:root {
    --color-primary: #2a5d4f;
    --color-secondary: #d4a574;
    --color-dark: #1a1a2e;
    --color-light: #f8f6f3;
    --color-text: #333340;
    --color-muted: #6b6b7b;
    --color-border: #e0ddd8;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-light);
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: #1e4a3d;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: white;
}

.btn-light {
    background-color: white;
    color: var(--color-dark);
}

.btn-light:hover {
    background-color: var(--color-secondary);
    color: white;
}

.btn-full {
    width: 100%;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cookie-content p {
    flex: 1;
    min-width: 280px;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo a {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-primary);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--color-muted);
    padding: 4px 10px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-dark);
    transition: var(--transition);
}

.split-section {
    background-color: white;
}

.split-content {
    display: flex;
    min-height: 500px;
}

.split-text {
    flex: 1;
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--color-dark);
}

.split-text h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.split-text p {
    font-size: 1.1rem;
    color: var(--color-muted);
    margin-bottom: 28px;
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.split-section.reverse .split-content {
    flex-direction: row-reverse;
}

.dark-bg {
    background-color: var(--color-dark);
    color: white;
}

.dark-bg h2 {
    color: white;
}

.dark-bg p {
    color: rgba(255,255,255,0.8);
}

.intro-section {
    padding: 80px 0;
    background-color: var(--color-light);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.intro-content p {
    font-size: 1.15rem;
    color: var(--color-muted);
}

.feature-list {
    margin-bottom: 28px;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--color-text);
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background-color: var(--color-secondary);
    border-radius: 50%;
}

.trust-section {
    padding: 60px 0;
    background-color: var(--color-primary);
    color: white;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 1rem;
    opacity: 0.9;
}

.testimonials-section {
    padding: 80px 0;
    background-color: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 48px;
    color: var(--color-dark);
}

.testimonials-wrapper {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--color-light);
    padding: 32px;
    border-radius: 12px;
}

.testimonial-card blockquote p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 16px;
}

.testimonial-card cite {
    font-size: 0.95rem;
    color: var(--color-primary);
    font-weight: 600;
    font-style: normal;
}

.booking-section {
    padding: 80px 0;
    background-color: var(--color-light);
}

.booking-wrapper {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.booking-info {
    flex: 1;
    min-width: 280px;
}

.booking-info h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.booking-info p {
    color: var(--color-muted);
    font-size: 1.05rem;
}

.booking-form {
    flex: 1;
    min-width: 320px;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.footer {
    background-color: var(--color-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--color-secondary);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-col p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
}

.page-header {
    background-color: var(--color-primary);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.content-section {
    padding: 60px 0;
    background-color: white;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 1.6rem;
    color: var(--color-dark);
    margin: 32px 0 16px;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper p {
    margin-bottom: 16px;
    color: var(--color-text);
}

.content-wrapper ul {
    margin: 16px 0;
    padding-left: 24px;
}

.content-wrapper ul li {
    list-style: disc;
    margin-bottom: 8px;
    color: var(--color-text);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--color-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-card-image {
    height: 200px;
    overflow: hidden;
    background-color: #d4d4d4;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-content {
    padding: 28px;
}

.service-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.service-card-content p {
    color: var(--color-muted);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.about-team {
    padding: 60px 0;
    background-color: var(--color-light);
}

.about-team h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--color-dark);
}

.team-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 0 1 280px;
    text-align: center;
}

.team-member-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    background-color: #c4c4c4;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: var(--color-dark);
}

.team-member p {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.contact-info-section {
    padding: 60px 0;
    background-color: white;
}

.contact-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 280px;
}

.contact-details h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: var(--color-dark);
}

.contact-item {
    margin-bottom: 24px;
}

.contact-item h3 {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--color-text);
}

.contact-map {
    flex: 1;
    min-width: 300px;
    min-height: 300px;
    background-color: var(--color-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map-placeholder {
    text-align: center;
    color: var(--color-muted);
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
    background-color: white;
}

.thanks-content h1 {
    font-size: 2.4rem;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.thanks-content p {
    font-size: 1.15rem;
    color: var(--color-muted);
    margin-bottom: 24px;
    max-width: 500px;
}

@media (max-width: 900px) {
    .split-content {
        flex-direction: column;
    }

    .split-section.reverse .split-content {
        flex-direction: column;
    }

    .split-image {
        min-height: 300px;
        position: relative;
    }

    .split-image img {
        position: relative;
    }

    .split-text {
        padding: 40px 24px;
    }

    .split-text h1 {
        font-size: 2rem;
    }

    .trust-grid {
        gap: 40px;
    }

    .trust-number {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: var(--shadow-md);
        padding: 24px;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 16px;
    }

    .ad-disclosure {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .booking-wrapper {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .testimonials-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .header-container {
        height: 70px;
    }

    .split-text h1 {
        font-size: 1.75rem;
    }

    .split-text h2 {
        font-size: 1.5rem;
    }

    .booking-form {
        padding: 24px;
    }
}
