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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.site-header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #2c5f2d;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.7), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ff6b35;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s;
}

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

.intro-section {
    padding: 80px 0;
}

.intro-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c5f2d;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    object-fit: cover;
}

.feature-section {
    padding: 100px 0;
    background-color: #1a3a1b;
}

.dark-bg {
    background-color: #1a3a1b;
    color: #fff;
}

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

.feature-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.feature-card {
    flex: 1;
    max-width: 350px;
    text-align: center;
    padding: 40px 30px;
    background-color: rgba(255,255,255,0.08);
    border-radius: 8px;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    color: #ddd;
}

.services-preview {
    padding: 100px 0;
    background-color: #f9f9f9;
}

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.section-header-center p {
    font-size: 20px;
    color: #666;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.service-image {
    flex: 0 0 45%;
    background-color: #e0e0e0;
}

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

.service-content {
    flex: 1;
    padding: 40px;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

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

.service-highlights {
    list-style: none;
    margin-bottom: 25px;
}

.service-highlights li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.service-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
}

.service-price {
    margin-bottom: 25px;
    font-size: 20px;
}

.price-label {
    color: #666;
    margin-right: 10px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
}

.select-service {
    padding: 14px 35px;
    background-color: #ff6b35;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c5f2d;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.testimonial-author {
    font-size: 14px;
    color: #888;
    font-weight: 600;
}

.booking-section {
    padding: 80px 0;
    background-color: #fff;
}

.booking-wrapper {
    background-color: #f9f9f9;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.booking-wrapper h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c5f2d;
    text-align: center;
}

.booking-wrapper > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #2c5f2d;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #234c24;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
}

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

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #ddd;
}

.cta-button-alt {
    display: inline-block;
    padding: 16px 40px;
    background-color: #fff;
    color: #2c5f2d;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button-alt:hover {
    background-color: #f0f0f0;
}

.site-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ff6b35;
}

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

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

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

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

.footer-col ul li a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

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

.disclaimer {
    font-size: 12px !important;
    color: #666 !important;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c2c2c;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    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 {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.cookie-btn.accept {
    background-color: #2c5f2d;
    color: #fff;
}

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

.cookie-btn.reject {
    background-color: #666;
    color: #fff;
}

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

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.thanks-content .back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background-color: #2c5f2d;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-content .back-link:hover {
    background-color: #234c24;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

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

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

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

    .feature-cards {
        flex-direction: column;
    }

    .service-item,
    .service-item.reverse {
        flex-direction: column;
    }

    .service-image {
        flex: none;
        width: 100%;
        height: 250px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}