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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d2d2d;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #8b4513;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f7f5;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    background-color: #e8e6e3;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #8b4513;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #6d3410;
}

.cta-secondary {
    display: inline-block;
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.cta-secondary:hover {
    background-color: #1a1a1a;
}

.value-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.value-split.reverse {
    flex-direction: row-reverse;
}

.value-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.value-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.value-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.value-image {
    flex: 1;
    background-color: #e8e6e3;
    position: relative;
    overflow: hidden;
}

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

.services-preview {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    max-width: 420px;
    background-color: #f8f7f5;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e8e6e3;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    color: #4a4a4a;
    margin: 0 25px 20px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #8b4513;
    margin: 0 25px 20px;
}

.select-service {
    background-color: #2d2d2d;
    color: #ffffff;
    border: none;
    padding: 14px 25px;
    margin: 0 25px 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #1a1a1a;
}

.booking-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto 0;
}

.booking-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #2d2d2d;
    color: #ffffff;
}

.booking-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.booking-content > p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #e0e0e0;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 16px;
    font-size: 16px;
    border: 1px solid #4a4a4a;
    background-color: #3a3a3a;
    color: #ffffff;
    font-family: inherit;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #8b4513;
}

.booking-form button {
    margin-top: 10px;
}

.booking-image {
    flex: 1;
    background-color: #e8e6e3;
    position: relative;
    overflow: hidden;
}

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

.trust-indicators {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    background-color: #f8f7f5;
}

.indicator {
    flex: 1;
    text-align: center;
}

.indicator h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.indicator p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.main-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 40px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    line-height: 1.8;
    color: #b0b0b0;
}

.footer-section a {
    display: block;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 40px;
    border-top: 1px solid #2d2d2d;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 25px 40px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #8b4513;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #6d3410;
}

.cookie-btn.reject {
    background-color: #4a4a4a;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #3a3a3a;
}

.page-hero {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.page-hero p {
    font-size: 20px;
    color: #4a4a4a;
}

.about-split,
.values-split,
.standards-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.about-split.reverse,
.values-split.reverse,
.standards-split.reverse {
    flex-direction: row-reverse;
}

.about-content,
.values-content,
.standards-content {
    flex: 1;
    padding: 60px;
    background-color: #f8f7f5;
}

.about-content h2,
.values-content h2,
.standards-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-content p,
.values-content p,
.standards-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.about-image,
.values-image,
.standards-image {
    flex: 1;
    background-color: #e8e6e3;
    position: relative;
    overflow: hidden;
}

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

.approach-full {
    max-width: 1400px;
    margin: 80px auto;
    padding: 80px 60px;
    background-color: #ffffff;
}

.approach-full h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-grid {
    display: flex;
    gap: 40px;
}

.approach-item {
    flex: 1;
    padding: 30px;
    background-color: #f8f7f5;
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.services-detail {
    max-width: 1400px;
    margin: 60px auto;
}

.service-detail-card {
    display: flex;
    margin-bottom: 80px;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8e6e3;
    position: relative;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px;
    background-color: #f8f7f5;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: 700;
    font-size: 20px;
}

.service-note {
    font-size: 15px;
    color: #6c757d;
    font-style: italic;
    margin-top: 25px;
}

.pricing-info {
    max-width: 1400px;
    margin: 80px auto;
    padding: 80px 60px;
    background-color: #2d2d2d;
    color: #ffffff;
}

.pricing-info h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.pricing-grid {
    display: flex;
    gap: 40px;
}

.pricing-item {
    flex: 1;
    padding: 30px;
    background-color: #3a3a3a;
}

.pricing-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-item ul {
    list-style: none;
}

.pricing-item li {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.pricing-item li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: 700;
    font-size: 20px;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
}

.contact-info {
    flex: 1.2;
    padding: 60px;
    background-color: #f8f7f5;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-detail .no-link {
    color: #4a4a4a;
    font-weight: 600;
}

.contact-detail .note {
    font-size: 15px;
    color: #6c757d;
    margin-top: 10px;
    font-style: italic;
}

.contact-image {
    flex: 0.8;
    background-color: #e8e6e3;
    position: relative;
    overflow: hidden;
}

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

.contact-note {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 60px;
    background-color: #ffffff;
}

.contact-note h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-note p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

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

.thanks-message h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

.thanks-message > p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
    text-align: center;
}

.confirmation-box {
    background-color: #f8f7f5;
    padding: 35px;
    margin-bottom: 40px;
    border-left: 4px solid #8b4513;
}

.confirmation-box h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.confirmation-box p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.6;
}

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

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps li {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.thanks-note {
    font-size: 15px;
    color: #6c757d;
    text-align: center;
    font-style: italic;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-date {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d2d2d;
    font-weight: 700;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.cookies-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.cookies-table th {
    background-color: #f8f7f5;
    font-weight: 700;
    color: #1a1a1a;
}

.cookies-table td {
    font-size: 15px;
    color: #4a4a4a;
}

@media (max-width: 1024px) {
    .hero-split,
    .value-split,
    .booking-split,
    .about-split,
    .values-split,
    .standards-split,
    .service-detail-card,
    .contact-split {
        flex-direction: column;
    }

    .service-detail-card.reverse,
    .value-split.reverse,
    .values-split.reverse,
    .standards-split.reverse {
        flex-direction: column;
    }

    .nav-container {
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-content,
    .value-content,
    .booking-content,
    .about-content,
    .values-content,
    .standards-content,
    .service-detail-content,
    .contact-info {
        padding: 40px 30px;
    }

    .hero-image,
    .value-image,
    .booking-image,
    .about-image,
    .values-image,
    .standards-image,
    .service-detail-image,
    .contact-image {
        min-height: 400px;
    }

    .trust-indicators,
    .approach-grid,
    .pricing-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-content h1,
    .page-hero h1,
    .thanks-message h1 {
        font-size: 36px;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        max-width: 100%;
    }

    .cookie-content {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }
}