* {
    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: #333;
    background: #ffffff;
}

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

.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.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: #2c5f2d;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

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

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-left {
    padding: 60px 80px;
    background: linear-gradient(135deg, #f5f7f5 0%, #e8f0e8 100%);
}

.split-right.hero-image {
    background: #d4e4d4;
    overflow: hidden;
}

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

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

.hero-content p {
    font-size: 19px;
    margin-bottom: 35px;
    color: #4a5f4a;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.features-split {
    display: flex;
}

.split-left.features-image {
    background: #e8f0e8;
    overflow: hidden;
}

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

.features-content {
    padding: 80px;
}

.features-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a3a1a;
}

.feature-item {
    margin-bottom: 35px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.feature-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.services-preview {
    padding: 80px 40px;
    background: #f9faf9;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

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

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

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

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

.service-image {
    height: 240px;
    overflow: hidden;
    background: #d4e4d4;
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a3a1a;
}

.service-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 14px 30px;
    background: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 15px;
}

.select-service:hover {
    background: #234a24;
}

.cta-split {
    display: flex;
    background: #1a3a1a;
    color: #ffffff;
}

.cta-split .split-left {
    background: #1a3a1a;
}

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

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #d0d8d0;
}

.contact-form {
    padding: 60px;
    background: #ffffff;
}

.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: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

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

.testimonials-split {
    display: flex;
}

.testimonials-image {
    background: #e8f0e8;
    overflow: hidden;
}

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

.testimonials-content {
    padding: 80px;
}

.testimonials-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a3a1a;
}

.testimonial {
    margin-bottom: 35px;
    padding: 25px;
    background: #f5f7f5;
    border-radius: 8px;
    border-left: 4px solid #2c5f2d;
}

.testimonial p {
    font-size: 17px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 12px;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5f2d;
}

.disclaimer-section {
    padding: 60px 40px;
    background: #fff9e6;
    border-top: 3px solid #f5d142;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

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

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

.footer-section p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.8;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #2c5f2d;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

.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-buttons {
    display: flex;
    gap: 15px;
}

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

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

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

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

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

.about-hero {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f5f7f5 0%, #e8f0e8 100%);
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a3a1a;
}

.about-hero p {
    font-size: 20px;
    color: #4a5f4a;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-split {
    display: flex;
}

.about-content {
    padding: 80px;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a3a1a;
}

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

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

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

.team-member {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.team-role {
    font-size: 16px;
    color: #2c5f2d;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.services-hero {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f5f7f5 0%, #e8f0e8 100%);
    text-align: center;
}

.services-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a3a1a;
}

.services-hero p {
    font-size: 20px;
    color: #4a5f4a;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-detailed {
    padding: 80px 40px;
}

.service-detail {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background: #e8f0e8;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a3a1a;
}

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

.service-price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 25px 0;
}

.contact-hero {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f5f7f5 0%, #e8f0e8 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a3a1a;
}

.contact-hero p {
    font-size: 20px;
    color: #4a5f4a;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-info-section {
    padding: 80px 40px;
}

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

.contact-info-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background: #f5f7f5;
    padding: 40px;
    border-radius: 12px;
}

.contact-info-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a3a1a;
}

.contact-info-card p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f5f7f5 0%, #e8f0e8 100%);
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #1a3a1a;
}

.thanks-content p {
    font-size: 20px;
    color: #4a5f4a;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a3a1a;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.legal-page p,
.legal-page ul {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page ul {
    list-style-position: inside;
    padding-left: 20px;
}

.legal-page a {
    color: #2c5f2d;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: #ffffff;
        flex-direction: column;
        padding: 30px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-split,
    .features-split,
    .cta-split,
    .testimonials-split,
    .about-split {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        min-height: 400px;
    }

    .hero-content h1,
    .about-hero h1,
    .services-hero h1,
    .contact-hero h1,
    .thanks-content h1 {
        font-size: 36px;
    }

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

    .service-detail {
        flex-direction: column !important;
        gap: 30px;
    }

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

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