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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --accent-color: #8b5a3c;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: var(--bg-light);
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.nav-left .logo {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-right a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: var(--primary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 520px;
}

.cta-hero {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

.cta-hero:hover {
    background-color: #234a61;
}

.hero-image {
    flex: 1;
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

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

.intro-offset {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    gap: 80px;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
}

.intro-visual {
    flex: 0.8;
    background-color: var(--bg-light);
}

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

.services-main {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.services-header p {
    font-size: 19px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.service-card-split {
    display: flex;
    margin-bottom: 40px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.service-card-split.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: var(--secondary-color);
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-info p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 24px;
}

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

.select-service {
    padding: 14px 28px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #6f4830;
}

.booking-section {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

.booking-container {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-form-wrapper {
    flex: 1.3;
}

.booking-form-wrapper h2 {
    font-size: 42px;
    margin-bottom: 12px;
}

.form-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #234a61;
}

.booking-trust {
    flex: 0.7;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.booking-trust h3 {
    font-size: 28px;
    margin-bottom: 32px;
}

.trust-item {
    margin-bottom: 28px;
}

.trust-item strong {
    font-size: 18px;
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.trust-item p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-light);
}

.testimonials-offset {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.testimonials-offset h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 48px;
}

.testimonial-grid {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.testimonial-card cite {
    font-size: 15px;
    color: var(--text-light);
    font-style: normal;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 60px 20px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-column p,
.footer-column a {
    font-size: 15px;
    color: var(--bg-light);
    line-height: 1.8;
}

.footer-column a {
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--secondary-color);
}

.footer-disclaimer {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #999;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 24px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cookie-accept:hover {
    background-color: #234a61;
}

.cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

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

.about-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 500px;
}

.about-image {
    flex: 1;
    background-color: var(--secondary-color);
    overflow: hidden;
}

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

.story-section {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

.story-container {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story-block {
    flex: 1.2;
}

.story-block h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.story-block p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.story-visual {
    flex: 0.8;
    background-color: var(--bg-light);
}

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

.values-split {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    background-color: var(--bg-light);
}

.values-content {
    flex: 1.3;
}

.values-content h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.value-item {
    margin-bottom: 36px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-item p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
}

.values-image {
    flex: 0.7;
    background-color: var(--secondary-color);
    overflow: hidden;
    border-radius: 8px;
}

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

.team-section {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
}

.team-intro {
    font-size: 19px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 56px;
}

.team-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    flex: 1;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.team-member .role {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.mission-offset {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.mission-container {
    max-width: 900px;
    margin: 0 auto;
}

.mission-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.mission-text p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.mission-cta {
    margin-top: 40px;
}

.cta-inline {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-inline:hover {
    background-color: #234a61;
}

.services-hero {
    padding: 80px 60px;
    text-align: center;
    background-color: var(--bg-light);
}

.services-hero h1 {
    font-size: 52px;
    margin-bottom: 16px;
}

.services-intro {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-catalog {
    padding: 60px 60px 80px;
    background-color: var(--bg-white);
}

.service-detailed-card {
    display: flex;
    margin-bottom: 60px;
    gap: 60px;
    align-items: center;
}

.service-detailed-card.reverse {
    flex-direction: row-reverse;
}

.service-image-large {
    flex: 1;
    background-color: var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
}

.service-image-large img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 28px;
}

.service-includes h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-includes ul {
    list-style: none;
    margin-bottom: 28px;
}

.service-includes li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-pricing-detail {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.price-label {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.price-amount {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-color);
}

.select-service-btn {
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #6f4830;
}

.services-cta {
    padding: 80px 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #234a61;
}

.contact-hero {
    padding: 80px 60px;
    text-align: center;
    background-color: var(--bg-light);
}

.contact-hero h1 {
    font-size: 52px;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 20px;
    color: var(--text-light);
}

.contact-main {
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.contact-container {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 40px;
    margin-bottom: 32px;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-note {
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 4px;
    margin-top: 32px;
}

.contact-note p {
    font-size: 16px;
    color: var(--text-light);
}

.contact-visual {
    flex: 1;
    background-color: var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-reason {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.contact-reason h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 48px;
}

.reason-grid {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 8px;
}

.reason-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.reason-card p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
}

.thanks-container {
    display: flex;
    min-height: 600px;
}

.thanks-content {
    flex: 1.2;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin-bottom: 32px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 32px;
}

.selected-service-info {
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 4px;
    margin-bottom: 32px;
    font-size: 17px;
    color: var(--text-dark);
}

.thanks-next-steps {
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.step {
    margin-bottom: 20px;
}

.step strong {
    font-size: 18px;
    display: block;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.step p {
    font-size: 16px;
    color: var(--text-light);
}

.thanks-actions {
    display: flex;
    gap: 16px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.thanks-visual {
    flex: 0.8;
    background-color: var(--secondary-color);
    overflow: hidden;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legal-content {
    padding: 80px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 48px;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 24px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: var(--text-dark);
}

.legal-section p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
}

.legal-update {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 40px;
}

@media (max-width: 968px) {
    .hero-split,
    .about-hero-split,
    .thanks-container {
        flex-direction: column;
    }

    .service-card-split,
    .service-card-split.reverse,
    .service-detailed-card,
    .service-detailed-card.reverse {
        flex-direction: column;
    }

    .intro-offset,
    .story-container,
    .values-split,
    .contact-container,
    .booking-container {
        flex-direction: column;
        gap: 40px;
    }

    .testimonial-grid,
    .team-grid,
    .reason-grid {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .split-nav {
        flex-direction: column;
        gap: 20px;
    }

    .nav-right {
        gap: 20px;
    }

    .hero-content h1,
    .about-content h1 {
        font-size: 40px;
    }

    .thanks-actions {
        flex-direction: column;
    }
}