/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    color: #2d5f3f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3d28;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5f3f;
}

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

.nav-links a {
    font-weight: 500;
    padding: 0.5rem 0;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

/* Hero Split */
.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #1a3d28;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-right {
    flex: 1;
    background-color: #d4e4da;
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #ecf0f1;
    color: #2c3e50;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #d5dbdb;
}

/* Mission Split */
.mission-split {
    display: flex;
    align-items: stretch;
}

.mission-image {
    flex: 1;
    background-color: #d4e4da;
}

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

.mission-content {
    flex: 1;
    padding: 4rem;
    background-color: #ffffff;
}

.mission-content h2 {
    font-size: 2.2rem;
    color: #1a3d28;
    margin-bottom: 1.5rem;
}

.mission-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #555;
}

.citation {
    color: #2d5f3f;
    font-weight: 600;
    text-decoration: underline;
}

/* Services Intro */
.services-intro {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.services-intro-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.services-intro-content h2 {
    font-size: 2.5rem;
    color: #1a3d28;
    margin-bottom: 1rem;
}

.services-intro-content p {
    font-size: 1.1rem;
    color: #555;
}

/* Services Grid */
.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(50% - 1rem);
    max-width: 600px;
    display: flex;
    flex-direction: column;
}

.service-image {
    background-color: #d4e4da;
    height: 250px;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    font-size: 1.5rem;
    color: #1a3d28;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #555;
    flex-grow: 1;
}

.service-price {
    padding: 0 1.5rem 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d5f3f;
}

.btn-select-service {
    margin: 0 1.5rem 1.5rem;
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 0.9rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1a3d28;
}

/* Impact Split */
.impact-split {
    display: flex;
    align-items: stretch;
}

.impact-content {
    flex: 1;
    padding: 4rem;
    background-color: #2d5f3f;
    color: #ffffff;
}

.impact-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.stats-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 120px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #a8d5ba;
}

.stat-label {
    font-size: 1rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.impact-content p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.impact-image {
    flex: 1;
    background-color: #d4e4da;
}

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

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

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

.form-container h2 {
    font-size: 2rem;
    color: #1a3d28;
    margin-bottom: 1rem;
}

.form-intro {
    color: #555;
    margin-bottom: 2rem;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #d5dbdb;
    border-radius: 4px;
    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: #2d5f3f;
}

.btn-submit {
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Science References */
.science-references {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.science-references h3 {
    font-size: 1.5rem;
    color: #1a3d28;
    margin-bottom: 1rem;
}

.references-list {
    padding-left: 1.5rem;
}

.references-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.references-list a {
    color: #2d5f3f;
    text-decoration: underline;
}

/* Footer */
.main-footer {
    background-color: #1a3d28;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-column p {
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-column a {
    color: #a8d5ba;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    opacity: 0.8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

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

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

/* Page Hero */
.page-hero {
    background-color: #2d5f3f;
    color: #ffffff;
    text-align: center;
    padding: 4rem 2rem;
}

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

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Split */
.about-split {
    display: flex;
    align-items: stretch;
}

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

.about-content h2 {
    font-size: 2.2rem;
    color: #1a3d28;
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background-color: #d4e4da;
}

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

/* Values Split */
.values-split {
    display: flex;
    align-items: stretch;
}

.values-image {
    flex: 1;
    background-color: #d4e4da;
}

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

.values-content {
    flex: 1;
    padding: 4rem;
    background-color: #f8f9fa;
}

.values-content h2 {
    font-size: 2.2rem;
    color: #1a3d28;
    margin-bottom: 2rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item h3 {
    font-size: 1.5rem;
    color: #2d5f3f;
    margin-bottom: 0.8rem;
}

.value-item p {
    color: #555;
    line-height: 1.7;
}

/* Approach Section */
.approach-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.approach-container h2 {
    font-size: 2.5rem;
    color: #1a3d28;
    text-align: center;
    margin-bottom: 3rem;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-step {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2d5f3f;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 1rem;
}

.approach-step h3 {
    font-size: 1.3rem;
    color: #1a3d28;
    margin-bottom: 0.8rem;
}

.approach-step p {
    color: #555;
    line-height: 1.6;
}

/* Expertise Split */
.expertise-split {
    display: flex;
    align-items: stretch;
}

.expertise-content {
    flex: 1;
    padding: 4rem;
    background-color: #2d5f3f;
    color: #ffffff;
}

.expertise-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.expertise-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.expertise-image {
    flex: 1;
    background-color: #d4e4da;
}

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

/* CTA About */
.cta-about {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: #1a3d28;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Services Detailed */
.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-item {
    display: flex;
    align-items: stretch;
    margin-bottom: 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    color: #1a3d28;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.service-includes {
    list-style: none;
    margin-bottom: 2rem;
}

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: 700;
}

.service-pricing-box {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #2d5f3f;
}

.price-label {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 1rem;
}

.service-detail-image {
    flex: 1;
    background-color: #d4e4da;
    min-width: 400px;
}

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

/* Services CTA */
.services-cta {
    background-color: #2d5f3f;
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
}

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

.services-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Contact Split */
.contact-split {
    display: flex;
    align-items: stretch;
}

.contact-info {
    flex: 1;
    padding: 4rem;
    background-color: #ffffff;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: #1a3d28;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.contact-detail-block {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ecf0f1;
}

.contact-detail-block:last-child {
    border-bottom: none;
}

.contact-detail-block h3 {
    font-size: 1.3rem;
    color: #2d5f3f;
    margin-bottom: 0.8rem;
}

.contact-detail-block p {
    margin-bottom: 0;
}

.contact-image {
    flex: 1;
    background-color: #d4e4da;
}

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

/* Contact FAQ */
.contact-faq {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.faq-container h2 {
    font-size: 2.5rem;
    color: #1a3d28;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #2d5f3f;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

/* Thanks Section */
.thanks-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #1a3d28;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.selected-service-info {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #2d5f3f;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Next Steps */
.next-steps {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.next-steps-container {
    max-width: 1000px;
    margin: 0 auto;
}

.next-steps-container h2 {
    font-size: 2.5rem;
    color: #1a3d28;
    text-align: center;
    margin-bottom: 3rem;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-number {
    min-width: 60px;
    height: 60px;
    background-color: #2d5f3f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #1a3d28;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #555;
    line-height: 1.6;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    color: #1a3d28;
    margin-bottom: 1rem;
}

.legal-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.legal-container h3 {
    font-size: 1.3rem;
    color: #1a3d28;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-container p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.6;
}

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ecf0f1;
    font-style: italic;
}

/* Tables */
.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.gdpr-table thead,
.cookies-table thead {
    background-color: #2d5f3f;
    color: #ffffff;
}

.gdpr-table th,
.cookies-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.gdpr-table td,
.cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid #ecf0f1;
}

.gdpr-table tr:hover,
.cookies-table tr:hover {
    background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-split,
    .mission-split,
    .impact-split,
    .about-split,
    .values-split,
    .expertise-split,
    .contact-split,
    .service-detail-item {
        flex-direction: column;
    }

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

    .hero-left,
    .mission-content,
    .impact-content,
    .about-content,
    .values-content,
    .expertise-content,
    .contact-info,
    .service-detail-content {
        padding: 3rem 2rem;
    }

    .hero-right,
    .mission-image,
    .impact-image,
    .about-image,
    .values-image,
    .expertise-image,
    .contact-image,
    .service-detail-image {
        min-height: 300px;
    }

    .service-detail-image {
        min-width: 100%;
    }

    .hero-left h1,
    .page-hero h1 {
        font-size: 2.2rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

    .approach-step {
        flex: 1 1 100%;
    }

    .faq-item {
        flex: 1 1 100%;
    }

    .timeline-item {
        flex-direction: row;
    }

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

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

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .ad-disclosure {
        font-size: 0.7rem;
    }

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