* {
    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: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 36px;
    z-index: 999;
}

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

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

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

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

.nav-links a:hover {
    color: #27ae60;
}

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

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

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

.hero-content p {
    font-size: 19px;
    color: #5a6c7d;
    margin-bottom: 35px;
    max-width: 520px;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s;
    align-self: flex-start;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #27ae60;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #27ae60;
    border-radius: 6px;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

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

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

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

.split-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.services-grid {
    padding: 90px 40px;
    background-color: #fafbfc;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: #5a6c7d;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

.service-card p {
    font-size: 15px;
    color: #5a6c7d;
    margin: 0 25px 20px;
    flex-grow: 1;
}

.price {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 25px 20px;
}

.btn-select-service {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    margin: 0 25px 25px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background-color: #229954;
    transform: translateX(3px);
}

.features-split {
    display: flex;
    background-color: #ecf0f1;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    font-size: 16px;
    color: #2c3e50;
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.booking-form-section {
    padding: 90px 40px;
    background-color: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-align: center;
}

.form-container > p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 40px;
    text-align: center;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

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

.footer-section ul li a:hover {
    color: #27ae60;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    color: #95a5a6;
    margin-bottom: 15px;
    line-height: 1.5;
}

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

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

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

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

.cookie-content p {
    color: #ecf0f1;
    font-size: 15px;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    background-color: transparent;
    color: #ecf0f1;
    border: 2px solid #ecf0f1;
}

.btn-reject:hover {
    background-color: rgba(236, 240, 241, 0.1);
}

.page-hero {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    padding: 100px 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

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

.values-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 35px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #27ae60;
    font-weight: 600;
}

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

.approach-split {
    display: flex;
    background-color: #fafbfc;
    min-height: 500px;
}

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

.team-section {
    padding: 80px 40px;
    background-color: #ecf0f1;
}

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

.team-content p {
    font-size: 17px;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.8;
}

.cta-section {
    padding: 100px 40px;
    background-color: #27ae60;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    color: #ffffff;
    opacity: 0.95;
    margin-bottom: 35px;
}

.services-detailed {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 40px;
}

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

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

.service-image-large {
    flex: 1;
    background-color: #e8eaed;
}

.service-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.service-info {
    flex: 1;
}

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

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

.service-info p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 15px;
    color: #2c3e50;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 24px;
}

.included-services {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.included-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.included-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.included-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.included-item p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-split {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

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

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #27ae60;
    font-weight: 600;
}

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

.contact-image {
    flex: 1;
    background-color: #e8eaed;
}

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

.directions-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.directions-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.direction-option {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.direction-option h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.direction-option p {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 10px;
    line-height: 1.6;
}

.faq-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    padding: 30px;
    background-color: #fafbfc;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

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

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

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

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

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #34495e;
    font-weight: 600;
}

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

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

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

.thanks-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

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

.thanks-message {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
    line-height: 1.7;
}

.confirmation-details {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a1a;
    text-align: center;
}

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

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

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

.contact-reminder {
    padding: 30px;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.contact-reminder p {
    font-size: 15px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.email-display {
    font-size: 18px;
    font-weight: 600;
    color: #27ae60;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .about-split,
    .approach-split,
    .features-split,
    .contact-split,
    .service-detail {
        flex-direction: column;
    }

    .intro-split.reverse,
    .approach-split.reverse,
    .service-detail.reverse {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .value-card,
    .faq-item,
    .included-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

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

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

    .hero-content p {
        font-size: 17px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

    .services-grid,
    .values-section,
    .team-section,
    .included-services,
    .directions-section,
    .faq-section {
        padding: 60px 20px;
    }
}