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

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

.main-nav {
    background-color: #1a5f3f;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.hero-section {
    position: relative;
    height: 600px;
    background-color: #2d5a3f;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 95, 63, 0.7), rgba(26, 95, 63, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    max-width: 900px;
    line-height: 1.2;
}

.hero-subtext {
    color: #e8f5e9;
    font-size: 1.25rem;
    max-width: 700px;
}

.story-section {
    background-color: #f8faf9;
    padding: 5rem 2rem;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2.25rem;
    color: #1a5f3f;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.story-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.citation {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8f5e9;
}

.insight-section {
    background-color: #1a5f3f;
    padding: 5rem 2rem;
}

.insight-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.insight-text p {
    font-size: 1.125rem;
    color: #e8f5e9;
    margin-bottom: 1.25rem;
}

.insight-wrapper img {
    width: 400px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #2d5a3f;
}

.problem-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.problem-section h2 {
    text-align: center;
    font-size: 2.25rem;
    color: #1a5f3f;
    margin-bottom: 3rem;
}

.problem-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.problem-card {
    flex: 1;
    background-color: #fff5f5;
    padding: 2.5rem;
    border-left: 4px solid #e74c3c;
}

.problem-card h4 {
    font-size: 1.5rem;
    color: #c0392b;
    margin-bottom: 1rem;
}

.problem-card p {
    font-size: 1rem;
    color: #34495e;
}

.approach-section {
    background-color: #e8f5e9;
    padding: 5rem 2rem;
}

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

.approach-content h2 {
    font-size: 2.25rem;
    color: #1a5f3f;
    margin-bottom: 2rem;
    text-align: center;
}

.approach-content p {
    font-size: 1.125rem;
    color: #34495e;
    margin-bottom: 2rem;
}

.approach-content img {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 8px;
    object-fit: cover;
    background-color: #c8e6c9;
}

.testimonials-section {
    background-color: #2c3e50;
    padding: 5rem 2rem;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.25rem;
    color: #ffffff;
    margin-bottom: 3rem;
}

.testimonials-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.testimonial {
    flex: 1;
    background-color: #34495e;
    padding: 2rem;
    border-radius: 8px;
}

.testimonial p {
    font-size: 1.125rem;
    color: #ecf0f1;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    color: #95a5a6;
    font-size: 0.95rem;
    font-style: normal;
}

.benefits-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.25rem;
    color: #1a5f3f;
    margin-bottom: 4rem;
}

.benefits-list {
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.benefit-item:nth-child(even) {
    flex-direction: row-reverse;
}

.benefit-item img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e8f5e9;
}

.benefit-text {
    flex: 1;
    padding-top: 1rem;
}

.benefit-text h4 {
    font-size: 1.75rem;
    color: #1a5f3f;
    margin-bottom: 1rem;
}

.benefit-text p {
    font-size: 1.125rem;
    color: #34495e;
    line-height: 1.7;
}

.services-pricing-section {
    background-color: #f8faf9;
    padding: 5rem 2rem;
}

.services-pricing-section h2 {
    text-align: center;
    font-size: 2.25rem;
    color: #1a5f3f;
    margin-bottom: 3rem;
}

.pricing-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.pricing-card {
    background-color: #ffffff;
    border: 2px solid #d4e9dc;
    border-radius: 8px;
    padding: 2.5rem;
    width: 320px;
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #1a5f3f;
}

.pricing-card.featured {
    border-color: #27ae60;
    border-width: 3px;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #27ae60;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #1a5f3f;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.price {
    font-size: 2rem;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.select-service-btn {
    width: 100%;
    padding: 1rem;
    background-color: #1a5f3f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #27ae60;
}

.form-section {
    background-color: #e8f5e9;
    padding: 5rem 2rem;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2rem;
    color: #1a5f3f;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d4e9dc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    padding: 1.125rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #1e8449;
}

.disclaimer-section {
    background-color: #fef9e7;
    padding: 3rem 2rem;
    border-top: 2px solid #f39c12;
}

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

.disclaimer-content h4 {
    font-size: 1.25rem;
    color: #d68910;
    margin-bottom: 1rem;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a5f3f;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 2.5rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #e8f5e9;
}

.footer-section p {
    color: #c8e6c9;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-references {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #2d5a3f;
}

.footer-references h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #e8f5e9;
}

.footer-references p {
    font-size: 0.875rem;
    color: #c8e6c9;
    margin-bottom: 0.75rem;
}

.footer-references a {
    color: #a5d6a7;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #2d5a3f;
}

.footer-bottom p {
    color: #a5d6a7;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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: 2rem;
}

.cookie-content p {
    color: #ecf0f1;
    flex: 1;
}

.cookie-content a {
    color: #3498db;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.cookie-accept:hover {
    opacity: 0.9;
}

.cookie-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.cookie-reject:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .insight-wrapper {
        flex-direction: column;
    }

    .insight-wrapper img {
        width: 100%;
    }

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

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

    .benefit-item,
    .benefit-item:nth-child(even) {
        flex-direction: column;
    }

    .benefit-item img {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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