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

.navigation {
    background-color: #2d5a3d;
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #d4e8dc;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

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

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #1a3a28;
    font-weight: 800;
}

.hero-left p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #4a5a52;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.05rem;
}

.cta-primary:hover {
    background-color: #1f4029;
}

.cta-secondary {
    display: inline-block;
    background-color: #4a7c59;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.05rem;
}

.cta-secondary:hover {
    background-color: #3d6b4f;
}

.mission-split {
    display: flex;
    align-items: stretch;
    min-height: 70vh;
}

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

.mission-left h2 {
    font-size: 2.75rem;
    margin-bottom: 2rem;
    color: #1a3a28;
    font-weight: 700;
}

.mission-left p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #3a4a42;
    line-height: 1.7;
}

.mission-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.mission-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.citation {
    color: #2d5a3d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.citation:hover {
    color: #4a7c59;
}

.services-section {
    padding: 6rem 0;
    background-color: #f5f8f6;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.services-intro h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a3a28;
    font-weight: 700;
}

.services-intro p {
    font-size: 1.25rem;
    color: #4a5a52;
}

.service-card-split {
    display: flex;
    align-items: stretch;
    margin-bottom: 0;
    min-height: 500px;
}

.service-card-split.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a3a28;
    font-weight: 700;
}

.service-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #3a4a42;
    line-height: 1.7;
}

.service-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: #2d5a3d;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.service-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.btn-service {
    display: inline-block;
    background-color: #3d6b4f;
    color: #ffffff;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    max-width: 300px;
}

.btn-service:hover {
    background-color: #2d5a3d;
}

.cta-split {
    display: flex;
    align-items: center;
    padding: 5rem 4rem;
    background-color: #e8f0ec;
    gap: 4rem;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a3a28;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #3a4a42;
    line-height: 1.7;
}

.cta-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2d5a3d;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #4a5a52;
    line-height: 1.4;
}

.form-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.form-container-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 0;
    align-items: stretch;
}

.form-info {
    flex: 1;
    padding: 4rem 3.5rem;
    background-color: #2d5a3d;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-info p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    color: #d4e8dc;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.benefit-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #a8d5ba;
    font-weight: 700;
}

.form-wrapper {
    flex: 1;
    padding: 4rem 3.5rem;
    background-color: #f8faf9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a3a28;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #d4e8dc;
    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: #2d5a3d;
}

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

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

.evidence-section {
    padding: 5rem 4rem;
    background-color: #f5f8f6;
}

.evidence-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a3a28;
    font-weight: 700;
}

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

.evidence-content {
    flex: 1.5;
}

.evidence-content p {
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
    color: #3a4a42;
    line-height: 1.7;
}

.evidence-note {
    flex: 1;
    background-color: #fff8e1;
    padding: 2rem;
    border-left: 4px solid #f4b350;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: #5a4a2a;
    line-height: 1.6;
}

.footer {
    background-color: #1a3a28;
    color: #d4e8dc;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: #ffffff;
    font-weight: 700;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

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

.footer-references {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

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

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references ol li {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-references ol li a {
    color: #a8d5ba;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-references ol li a:hover {
    color: #ffffff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3a28;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 10000;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-accept {
    background-color: #4a7c59;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    opacity: 0.8;
}

.about-hero-split {
    display: flex;
    align-items: stretch;
    min-height: 70vh;
}

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

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1a3a28;
    font-weight: 800;
}

.about-hero-content p {
    font-size: 1.25rem;
    color: #4a5a52;
    line-height: 1.7;
}

.about-hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.origin-split {
    display: flex;
    padding: 5rem 4rem;
    gap: 4rem;
    background-color: #ffffff;
    align-items: center;
}

.origin-left {
    flex: 1;
}

.origin-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a3a28;
    font-weight: 700;
}

.origin-left p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #3a4a42;
    line-height: 1.7;
}

.origin-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.principle-card {
    padding: 2rem;
    background-color: #f5f8f6;
    border-left: 4px solid #2d5a3d;
}

.principle-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a3a28;
    font-weight: 700;
}

.principle-card p {
    font-size: 1.05rem;
    color: #3a4a42;
    line-height: 1.6;
}

.team-approach {
    padding: 5rem 4rem;
    background-color: #e8f0ec;
}

.team-approach h2 {
    font-size: 2.75rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a3a28;
    font-weight: 700;
}

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

.approach-content {
    flex: 1.5;
}

.approach-content p {
    font-size: 1.15rem;
    margin-bottom: 1.75rem;
    color: #3a4a42;
    line-height: 1.7;
}

.approach-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.stat-large {
    display: flex;
    flex-direction: column;
}

.stat-large .number {
    font-size: 4rem;
    font-weight: 800;
    color: #2d5a3d;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-large .label {
    font-size: 1.1rem;
    color: #4a5a52;
    line-height: 1.4;
}

.methodology-split {
    display: flex;
    align-items: stretch;
    min-height: 70vh;
}

.methodology-split.reverse {
    flex-direction: row-reverse;
}

.methodology-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.methodology-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a3a28;
    font-weight: 700;
}

.methodology-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #3a4a42;
    line-height: 1.7;
}

.methodology-list {
    list-style: none;
    counter-reset: methodology-counter;
}

.methodology-list li {
    counter-increment: methodology-counter;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
    font-size: 1.1rem;
    color: #3a4a42;
    line-height: 1.7;
}

.methodology-list li::before {
    content: counter(methodology-counter);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: #2d5a3d;
}

.methodology-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.methodology-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.commitment-section {
    padding: 5rem 4rem;
    background-color: #f5f8f6;
}

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

.commitment-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a3a28;
    font-weight: 700;
}

.commitment-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #3a4a42;
    line-height: 1.7;
}

.services-header-split {
    padding: 5rem 4rem;
    background-color: #f8faf9;
    text-align: center;
}

.services-header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a3a28;
    font-weight: 800;
}

.services-header-content p {
    font-size: 1.25rem;
    color: #4a5a52;
    max-width: 700px;
    margin: 0 auto;
}

.services-detail {
    padding: 3rem 0;
    background-color: #ffffff;
}

.service-detail-card {
    margin-bottom: 0;
}

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

.service-detail-split {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

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

.service-detail-info {
    flex: 1;
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8faf9;
}

.service-detail-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a3a28;
    font-weight: 700;
}

.service-detail-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #3a4a42;
    line-height: 1.7;
}

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

.service-includes h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a3a28;
    font-weight: 700;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes ul li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    color: #3a4a42;
    line-height: 1.6;
}

.service-includes ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
    font-size: 1.5rem;
}

.service-detail-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d5a3d;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-cta {
    padding: 5rem 4rem;
    background-color: #e8f0ec;
    text-align: center;
}

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

.services-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a3a28;
    font-weight: 700;
}

.services-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #3a4a42;
    line-height: 1.7;
}

.contact-header {
    padding: 5rem 4rem;
    background-color: #f8faf9;
    text-align: center;
}

.contact-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a3a28;
    font-weight: 800;
}

.contact-header p {
    font-size: 1.25rem;
    color: #4a5a52;
}

.contact-main-split {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.contact-info-side {
    flex: 1;
    padding: 4rem 3.5rem;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-block h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #1a3a28;
    font-weight: 700;
}

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

.contact-detail h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2d5a3d;
    font-weight: 700;
}

.contact-detail p {
    font-size: 1.1rem;
    color: #3a4a42;
    line-height: 1.6;
}

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #f5f8f6;
    border-left: 4px solid #2d5a3d;
}

.contact-note h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: #1a3a28;
    font-weight: 700;
}

.contact-note p {
    font-size: 1rem;
    color: #3a4a42;
    line-height: 1.6;
}

.contact-map-placeholder {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
}

.map-overlay p {
    font-size: 2rem;
    color: #2d5a3d;
    font-weight: 700;
}

.contact-approach {
    padding: 5rem 4rem;
    background-color: #f5f8f6;
}

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

.approach-text {
    margin-bottom: 3rem;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a3a28;
    font-weight: 700;
}

.approach-text p {
    font-size: 1.2rem;
    color: #3a4a42;
    line-height: 1.7;
}

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

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

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d5a3d;
    line-height: 1;
    min-width: 60px;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a3a28;
    font-weight: 700;
}

.step-content p {
    font-size: 1.1rem;
    color: #3a4a42;
    line-height: 1.6;
}

.thanks-section {
    padding: 6rem 4rem;
    background-color: #f8faf9;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

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

.thanks-icon svg {
    margin: 0 auto;
    display: block;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a3a28;
    font-weight: 800;
}

.thanks-message {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #4a5a52;
}

.thanks-details {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 4px;
    margin-bottom: 2.5rem;
    text-align: left;
}

.thanks-details p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #3a4a42;
    line-height: 1.7;
}

.thanks-details p:last-child {
    margin-bottom: 0;
}

.thanks-next-steps {
    background-color: #e8f0ec;
    padding: 2.5rem;
    border-radius: 4px;
    margin-bottom: 2.5rem;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1a3a28;
    font-weight: 700;
}

.thanks-next-steps ol {
    padding-left: 1.5rem;
}

.thanks-next-steps ol li {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #3a4a42;
    line-height: 1.6;
}

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

.btn-primary {
    display: inline-block;
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-size: 1.05rem;
}

.btn-primary:hover {
    background-color: #1f4029;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2d5a3d;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #2d5a3d;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

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

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

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a3a28;
    font-weight: 800;
}

.legal-updated {
    font-size: 0.95rem;
    color: #6a7a72;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    color: #2d5a3d;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a3a28;
    font-weight: 700;
}

.legal-container p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: #3a4a42;
    line-height: 1.7;
}

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

.legal-container ul li,
.legal-container ol li {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: #3a4a42;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .hero-split,
    .mission-split,
    .service-card-split,
    .cta-split,
    .form-container-split,
    .evidence-split,
    .about-hero-split,
    .origin-split,
    .approach-split,
    .methodology-split,
    .service-detail-split,
    .contact-main-split {
        flex-direction: column;
    }

    .service-card-split.reverse,
    .methodology-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-left,
    .mission-left,
    .service-content,
    .cta-content,
    .form-info,
    .form-wrapper,
    .about-hero-content,
    .origin-left,
    .origin-right,
    .approach-content,
    .methodology-content,
    .service-detail-info,
    .contact-info-side {
        padding: 3rem 2rem;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .services-intro h2,
    .team-approach h2,
    .evidence-section h2 {
        font-size: 2.25rem;
    }

    .stat-number,
    .stat-large .number {
        font-size: 2.5rem;
    }

    .nav-links {
        gap: 1.25rem;
    }

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

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

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}