* {
    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;
}

.navbar {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f4f;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

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

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

.nav-links a:hover {
    color: #2c5f4f;
}

.hero-section {
    margin-top: 0;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #e8f4f0;
}

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

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

.hero-text {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 40px;
}

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

.hero-text p {
    font-size: 22px;
    font-weight: 300;
    opacity: 0.95;
}

.story-section {
    padding: 80px 0;
    background-color: #fafafa;
}

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

.story-content h2 {
    font-size: 36px;
    color: #2c5f4f;
    margin-bottom: 30px;
    line-height: 1.3;
}

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

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

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

.insight-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    color: #2c5f4f;
    margin-bottom: 15px;
}

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

.benefits-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.benefits-section h2 {
    text-align: center;
    font-size: 42px;
    color: #2c5f4f;
    margin-bottom: 60px;
}

.benefits-cards {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.benefit-card {
    display: flex;
    gap: 50px;
    align-items: center;
}

.benefit-card.reverse {
    flex-direction: row-reverse;
}

.benefit-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.benefit-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 28px;
    color: #2c5f4f;
    margin-bottom: 20px;
}

.benefit-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #2c5f4f;
    color: #fff;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}

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

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    color: #2c5f4f;
    margin-bottom: 60px;
}

.services-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 260px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

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

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: #2c5f4f;
}

.service-card p {
    padding: 0 20px;
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.price {
    padding: 0 20px;
    font-size: 26px;
    font-weight: 700;
    color: #2c5f4f;
    margin: 15px 0;
}

.btn-select {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background-color: #2c5f4f;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #234a3d;
}

.cta-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #3a7d64 0%, #2c5f4f 100%);
    color: #fff;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 19px;
    opacity: 0.95;
}

.form-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.form-card h3 {
    font-size: 32px;
    color: #2c5f4f;
    margin-bottom: 30px;
    text-align: center;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: border-color 0.3s;
}

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

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

.btn-submit:hover {
    background-color: #234a3d;
}

.disclaimer-section {
    padding: 50px 0;
    background-color: #f5f5f5;
}

.disclaimer {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.references-section {
    padding: 50px 0;
    background-color: #fff;
}

.references-section h3 {
    font-size: 24px;
    color: #2c5f4f;
    margin-bottom: 20px;
}

.references-list {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.references-list a {
    color: #2c5f4f;
    text-decoration: none;
    transition: color 0.3s;
}

.references-list a:hover {
    color: #234a3d;
    text-decoration: underline;
}

.footer {
    background-color: #1a3329;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

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

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

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

.footer-column a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #fff;
}

.footer-column p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3329;
    color: #fff;
    padding: 25px;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #7ec4a8;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
    }

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

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

    .benefit-card,
    .benefit-card.reverse {
        flex-direction: column;
    }

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

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

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