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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-right a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #1a472a;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f5f7f9;
}

.hero-content {
    flex: 1;
    padding: 80px 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.15;
    color: #1a472a;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    background-color: #d4e3d8;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #1a472a;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #0f2e19;
}

.cta-secondary {
    display: inline-block;
    background-color: #f0f4f8;
    color: #1a472a;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: 2px solid #1a472a;
}

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

.intro-section {
    display: flex;
    padding: 100px 6%;
    gap: 60px;
    align-items: center;
}

.intro-left {
    flex: 1;
    background-color: #e8f0ec;
    overflow: hidden;
    border-radius: 8px;
}

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

.intro-right {
    flex: 1;
}

.intro-right h2 {
    font-size: 38px;
    color: #1a472a;
    margin-bottom: 24px;
    font-weight: 700;
}

.intro-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 18px;
}

.services-preview {
    padding: 100px 6%;
    background-color: #fafbfc;
}

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

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 24px);
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
}

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

.service-card h3 {
    font-size: 22px;
    color: #2c3e50;
    padding: 20px 24px 12px;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    color: #5a6c7d;
    padding: 0 24px 16px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    color: #1a472a;
    font-weight: 700;
    padding: 0 24px 20px;
}

.select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background-color: #1a472a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #0f2e19;
}

.booking-section {
    display: flex;
    padding: 100px 6%;
    gap: 60px;
    background-color: #ffffff;
}

.booking-form-container {
    flex: 1.2;
}

.booking-form-container h2 {
    font-size: 36px;
    color: #1a472a;
    margin-bottom: 32px;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a472a;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #1a472a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #0f2e19;
}

.booking-info {
    flex: 1;
    background-color: #f5f7f9;
    padding: 40px;
    border-radius: 8px;
}

.booking-info h3 {
    font-size: 24px;
    color: #1a472a;
    margin-bottom: 20px;
    font-weight: 700;
}

.booking-info ul {
    list-style: none;
    margin-bottom: 32px;
}

.booking-info ul li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #2c3e50;
    font-size: 15px;
}

.booking-info ul li:last-child {
    border-bottom: none;
}

.disclaimer-box {
    background-color: #fff8e1;
    padding: 24px;
    border-radius: 6px;
    border-left: 4px solid #ffa726;
}

.disclaimer-box p {
    font-size: 13px;
    line-height: 1.7;
    color: #5a5a5a;
}

.disclaimer-box strong {
    color: #2c3e50;
}

.why-choose {
    padding: 100px 6%;
    background-color: #f5f7f9;
}

.why-choose h2 {
    font-size: 42px;
    color: #1a472a;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.features-split {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.feature-item {
    flex: 1;
    min-width: 280px;
}

.feature-item h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

footer {
    background-color: #1a472a;
    color: #ffffff;
    padding: 60px 6% 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #d4e3d8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #d4e3d8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #d4e3d8;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px 6%;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

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

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #1a472a;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #0f2e19;
}

.cookie-btn.reject {
    background-color: #f0f4f8;
    color: #2c3e50;
}

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

.page-hero {
    padding: 80px 6% 60px;
    background-color: #f5f7f9;
    text-align: center;
}

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

.page-hero p {
    font-size: 19px;
    color: #5a6c7d;
}

.about-split {
    display: flex;
    padding: 100px 6%;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 38px;
    color: #1a472a;
    margin-bottom: 24px;
    font-weight: 700;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 18px;
}

.about-image {
    flex: 1;
    background-color: #e8f0ec;
    overflow: hidden;
    border-radius: 8px;
}

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

.values-section {
    padding: 100px 6%;
    background-color: #fafbfc;
}

.values-section h2 {
    font-size: 42px;
    color: #1a472a;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-card {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.team-section {
    display: flex;
    padding: 100px 6%;
    gap: 60px;
    align-items: center;
}

.team-image {
    flex: 1;
    background-color: #e8f0ec;
    overflow: hidden;
    border-radius: 8px;
}

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

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 38px;
    color: #1a472a;
    margin-bottom: 24px;
    font-weight: 700;
}

.team-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 18px;
}

.process-section {
    padding: 100px 6%;
    background-color: #f5f7f9;
}

.process-section h2 {
    font-size: 42px;
    color: #1a472a;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.process-steps {
    display: flex;
    gap: 32px;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background-color: #1a472a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.step p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.services-detailed {
    padding: 60px 6%;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: #e8f0ec;
    overflow: hidden;
    border-radius: 8px;
}

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

.service-detail-content {
    flex: 1;
}

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

.price-large {
    font-size: 32px;
    color: #1a472a;
    font-weight: 700;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 24px;
}

.service-detail-content h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-detail-content ul {
    margin-bottom: 28px;
    margin-left: 20px;
}

.service-detail-content ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.additional-services {
    padding: 100px 6%;
    background-color: #f5f7f9;
}

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

.addon-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.addon-card {
    flex: 1;
    min-width: 240px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    text-align: center;
}

.addon-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.addon-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.addon-price {
    font-size: 22px;
    color: #1a472a;
    font-weight: 700;
}

.contact-split {
    display: flex;
    padding: 60px 6%;
    gap: 60px;
}

.contact-locations {
    flex: 1.5;
}

.location-card {
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    margin-bottom: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.location-card h2 {
    font-size: 26px;
    color: #1a472a;
    margin-bottom: 20px;
    font-weight: 700;
}

.location-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.location-card strong {
    color: #2c3e50;
}

.contact-image {
    flex: 1;
    background-color: #e8f0ec;
    overflow: hidden;
    border-radius: 8px;
}

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

.contact-info-section {
    padding: 100px 6%;
    background-color: #f5f7f9;
}

.contact-info-section h2 {
    font-size: 42px;
    color: #1a472a;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.info-blocks {
    display: flex;
    gap: 32px;
}

.info-block {
    flex: 1;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.info-block h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.info-block p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.thanks-container {
    display: flex;
    padding: 80px 6%;
    gap: 60px;
    align-items: center;
    min-height: 600px;
}

.thanks-content {
    flex: 1;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin-bottom: 32px;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1a472a;
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.confirmation-details {
    background-color: #f5f7f9;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.confirmation-details h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.confirmation-details ul {
    margin-left: 20px;
}

.confirmation-details ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 8px;
}

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

.next-steps h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.next-steps p {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 12px;
}

.next-steps ul {
    margin-left: 20px;
}

.next-steps ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 8px;
}

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

.thanks-image {
    flex: 1;
    background-color: #e8f0ec;
    overflow: hidden;
    border-radius: 8px;
}

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

.legal-page {
    padding: 60px 6% 100px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    color: #1a472a;
    margin-bottom: 12px;
    font-weight: 700;
}

.update-date {
    font-size: 14px;
    color: #7a8a9a;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.legal-content ul {
    margin: 16px 0 16px 24px;
}

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

.legal-content a {
    color: #1a472a;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #0f2e19;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-section,
    .about-split,
    .team-section,
    .service-detail,
    .booking-section,
    .contact-split,
    .thanks-container {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 36px;
    }

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

    .service-card {
        width: 100%;
    }

    .features-split,
    .process-steps,
    .info-blocks {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .nav-right {
        gap: 16px;
        font-size: 14px;
    }
}