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

a {
    text-decoration: none;
    color: inherit;
}

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d7a4f;
}

.nav-center {
    display: flex;
    gap: 2.5rem;
}

.nav-center a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-center a:hover,
.nav-center a.active {
    color: #2d7a4f;
}

.nav-right .ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 0.4rem 0.9rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

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

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

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

.hero-content-left p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.hero-image-right {
    flex: 1;
    background-color: #e3e8eb;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d7a4f;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.intro-split {
    display: flex;
    align-items: center;
}

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

.intro-image-left {
    flex: 1;
    background-color: #dfe4e7;
}

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

.intro-content-right {
    flex: 1;
    padding: 5rem 4rem;
}

.intro-content-right h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
}

.intro-content-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
}

.problem-amplification {
    background-color: #fef5f1;
    padding: 5rem 2rem;
}

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

.problem-text {
    text-align: center;
    margin-bottom: 3rem;
}

.problem-text h2 {
    font-size: 2.6rem;
    color: #c74430;
    margin-bottom: 1rem;
}

.problem-text p {
    font-size: 1.15rem;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
}

.problem-points {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.point-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.point-card h3 {
    font-size: 1.4rem;
    color: #c74430;
    margin-bottom: 0.8rem;
}

.point-card p {
    color: #5a6c7d;
    line-height: 1.6;
}

.insight-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.insight-content-left {
    flex: 1;
    padding: 3rem 4rem;
}

.insight-content-left h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
}

.insight-content-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
}

.insight-image-right {
    flex: 1;
    background-color: #dfe4e7;
}

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

.services-preview {
    background-color: #f8fafb;
    padding: 5rem 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a3a2e;
}

.services-header p {
    font-size: 1.1rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    max-width: 1300px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
}

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

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

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.service-card .link-arrow {
    display: inline-block;
    padding: 0 1.5rem 1.5rem;
    color: #2d7a4f;
    font-weight: 600;
    transition: color 0.3s;
}

.service-card .link-arrow:hover {
    color: #246340;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2d7a4f;
    font-weight: 600;
    border: 2px solid #2d7a4f;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #2d7a4f;
    color: #ffffff;
}

.trust-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

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

.trust-image-left {
    flex: 1;
    background-color: #dfe4e7;
}

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

.trust-content-right {
    flex: 1;
    padding: 3rem 4rem;
}

.trust-content-right h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #1a3a2e;
}

.testimonial {
    background-color: #f8fafb;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2d7a4f;
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #2d7a4f;
    font-weight: 600;
}

.benefits-full {
    background-color: #1a3a2e;
    color: #ffffff;
    padding: 5rem 2rem;
}

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

.benefits-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.benefits-layout {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    min-width: 260px;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #7fd1ae;
}

.benefit-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #d4dcd8;
}

.final-cta-split {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.final-cta-content {
    flex: 1;
    padding: 4rem;
    text-align: center;
    background-color: #f0f4f2;
}

.final-cta-content h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
}

.final-cta-content p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #2d7a4f;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-primary-large:hover {
    background-color: #246340;
    transform: translateY(-2px);
}

.final-cta-image {
    flex: 1;
    background-color: #dfe4e7;
}

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

.main-footer {
    background-color: #1a3a2e;
    color: #d4dcd8;
    padding: 3rem 2rem 1rem;
}

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

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    color: #7fd1ae;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

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

.footer-section ul li a {
    color: #d4dcd8;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #2d5240;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #95a39e;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    margin-bottom: 0.8rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3a2e;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.page-hero-content {
    flex: 1;
    padding: 4rem;
    background-color: #f8fafb;
}

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

.page-hero-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.page-hero-image {
    flex: 1;
    background-color: #dfe4e7;
}

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

.story-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.story-content-left {
    flex: 1;
    padding: 3rem 4rem;
}

.story-content-left h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
}

.story-content-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
}

.story-image-right {
    flex: 1;
    background-color: #dfe4e7;
}

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

.mission-full {
    background-color: #f0f4f2;
    padding: 5rem 2rem;
}

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

.mission-container h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
}

.mission-container p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
}

.values-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

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

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

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

.values-content-right {
    flex: 1;
    padding: 3rem 4rem;
}

.values-content-right h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #1a3a2e;
}

.value-item {
    margin-bottom: 2rem;
}

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

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.team-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background-color: #f8fafb;
}

.team-content-left {
    flex: 1;
    padding: 3rem 4rem;
}

.team-content-left h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
}

.team-content-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
}

.team-image-right {
    flex: 1;
    background-color: #dfe4e7;
}

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

.approach-full {
    padding: 5rem 2rem;
}

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

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

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

.approach-step {
    flex: 1;
    min-width: 260px;
    background-color: #f8fafb;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2d7a4f;
}

.approach-step h3 {
    font-size: 1.4rem;
    color: #2d7a4f;
    margin-bottom: 1rem;
}

.approach-step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.cta-split {
    display: flex;
    align-items: center;
    background-color: #f0f4f2;
    min-height: 60vh;
}

.cta-content-left {
    flex: 1;
    padding: 4rem;
}

.cta-content-left h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
}

.cta-content-left p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.cta-image-right {
    flex: 1;
    background-color: #dfe4e7;
}

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

.page-header-split {
    background-color: #f8fafb;
    padding: 4rem 2rem;
    text-align: center;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a3a2e;
}

.header-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-card {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 3rem;
}

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

.service-detail-image {
    flex: 1;
    background-color: #dfe4e7;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: #1a3a2e;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.service-detail-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 0.5rem;
}

.service-price {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d7a4f;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background-color: #2d7a4f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

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

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

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

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

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

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

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-label a {
    color: #2d7a4f;
    text-decoration: underline;
}

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

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

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

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

.contact-info-left h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
}

.contact-info-left > p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    color: #2d7a4f;
    margin-bottom: 0.6rem;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

.contact-additional {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.contact-additional-container h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
}

.contact-additional-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
}

.location-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background-color: #f8fafb;
}

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

.location-image-left {
    flex: 1;
    background-color: #dfe4e7;
}

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

.location-content-right {
    flex: 1;
    padding: 3rem 4rem;
}

.location-content-right h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
}

.location-content-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
}

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

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

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

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

.thanks-message {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-details {
    background-color: #f0f4f2;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.thanks-details p {
    font-size: 1.05rem;
    color: #2c3e50;
}

.thanks-next-steps {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
}

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

.btn-primary {
    padding: 1rem 2rem;
    background-color: #2d7a4f;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #2d7a4f;
    border: 2px solid #2d7a4f;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #1a3a2e;
}

.last-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
}

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

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

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
}

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

.legal-container ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 0.6rem;
}

.legal-container a {
    color: #2d7a4f;
    text-decoration: underline;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .insight-split,
    .trust-split,
    .final-cta-split,
    .page-hero-split,
    .story-split,
    .values-split,
    .team-split,
    .cta-split,
    .service-detail-card,
    .contact-split,
    .location-split {
        flex-direction: column;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-center {
        gap: 1.5rem;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .benefits-layout,
    .approach-steps {
        flex-direction: column;
    }
}