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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

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

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

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

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

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

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

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

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

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

.ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
    border-left: 2px solid #bdc3c7;
    padding-left: 1rem;
}

.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.85) 0%, rgba(30, 60, 15, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

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

.narrow-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2d5016;
    line-height: 1.3;
}

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

.inline-image-block {
    margin: 3rem 0;
    background-color: #e8f5e9;
}

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

.problem-amplification {
    margin: 4rem 0;
    padding: 3rem;
    background-color: #ffffff;
    border-left: 5px solid #e74c3c;
}

.problem-amplification h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #c0392b;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.problem-card {
    padding: 1.5rem;
    background-color: #fef5f5;
    border-radius: 8px;
}

.problem-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #e74c3c;
}

.problem-card p {
    margin-bottom: 0;
    color: #555;
}

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

.split-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d5016;
}

.insight-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.citation {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

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

.insight-visual {
    flex: 1;
    background-color: #e8f5e9;
}

.insight-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.trust-section {
    padding: 5rem 2rem;
    background-color: #ecf7ed;
}

.testimonial-block {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #ffffff;
    border-left: 5px solid #27ae60;
}

.testimonial-block blockquote {
    margin: 0;
}

.testimonial-block p {
    font-size: 1.25rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.testimonial-block cite {
    font-size: 1rem;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
}

.services-reveal {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.services-reveal h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2d5016;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.8rem;
    padding: 1.5rem 2rem 0.5rem;
    color: #2d5016;
}

.service-card p {
    padding: 0 2rem;
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
}

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

.btn-select-service {
    margin: 0 2rem 2rem;
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2d5016 0%, #1e3c0f 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background-color: #ffffff;
    color: #2d5016;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #ecf7ed;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

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

.contact-form {
    margin-top: 3rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #34495e;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #d1d8dd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fef5e7;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    text-align: justify;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: #27ae60;
    font-size: 1.2rem;
}

.footer-column p {
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.references {
    font-size: 0.85rem;
}

.references li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.page-hero {
    background: linear-gradient(135deg, #2d5016 0%, #1e3c0f 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

.legal-page p,
.legal-page ul,
.legal-page ol {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #27ae60;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.legal-updated,
.legal-intro {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
    min-height: 70vh;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.service-confirmation {
    margin: 2rem 0;
}

.selected-service-info {
    font-size: 1.1rem;
    color: #2d5016;
    padding: 1rem;
    background-color: #e8f5e9;
    border-radius: 6px;
}

.thanks-next-steps {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
    text-align: center;
}

.thanks-next-steps ol {
    list-style-position: inside;
    line-height: 2;
}

.thanks-next-steps li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background-color: #ffffff;
    color: #2d5016;
    border: 2px solid #2d5016;
}

.btn-secondary:hover {
    background-color: #2d5016;
    color: #ffffff;
}

.contact-page {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

.contact-info h2 {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 2rem;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    color: #34495e;
    margin-bottom: 0.75rem;
}

.contact-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.email-display {
    color: #2d5016;
    font-weight: 600;
}

.contact-note {
    background-color: #fef5e7;
    padding: 1.5rem;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
}

.contact-note p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #e8f5e9;
    padding: 3rem;
    border-radius: 8px;
}

.map-info h3 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.map-info p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.about-content {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.about-content h2 {
    font-size: 2.2rem;
    color: #2d5016;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    line-height: 1.8;
}

.about-principles {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.principle-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-left: 5px solid #27ae60;
    border-radius: 4px;
}

.principle-item h3 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.principle-item p {
    margin-bottom: 0;
}

.services-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.service-details {
    padding: 0 2rem;
    margin-bottom: 1.5rem;
    list-style-position: inside;
}

.service-details li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #555;
}

.pricing-note {
    max-width: 900px;
    margin: 4rem auto 0;
    padding: 2rem;
    background-color: #fef5e7;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
}

.pricing-note p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #d1d8dd;
}

.cookie-table th {
    background-color: #2d5016;
    color: #ffffff;
    font-weight: 600;
}

.cookie-table tr:hover {
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

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

    .contact-layout {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

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