* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97b498;
    --accent-color: #c17c31;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9f7;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.navbar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-ad-label {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    background-color: var(--secondary-color);
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    gap: 3rem;
}

.intro-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.intro-text {
    flex: 1;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

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

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.btn-select {
    width: 100%;
    padding: 0.9rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.btn-select:hover {
    background-color: #234a24;
}

.form-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.form-section.hidden {
    display: none;
}

.form-split {
    display: flex;
    gap: 3rem;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.benefit-icon {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.form-container {
    flex: 1;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.why-us-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    gap: 3rem;
}

.why-content {
    flex: 1;
    padding: 3rem 2rem;
}

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-point h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.why-point p {
    color: var(--text-light);
    line-height: 1.7;
}

.why-image {
    flex: 1;
    background-color: var(--bg-light);
    overflow: hidden;
}

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

.testimonials-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.testimonials-split {
    display: flex;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.cta-section {
    background-color: var(--primary-color);
    padding: 5rem 2rem;
    margin: 6rem 0;
}

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

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

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-content .btn-primary {
    background-color: var(--accent-color);
}

.cta-content .btn-primary:hover {
    background-color: #a06726;
}

.disclaimer-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.disclaimer-section p {
    color: var(--text-light);
    line-height: 1.7;
}

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

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

.footer-section {
    flex: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

.btn-cookie:not(.btn-secondary) {
    background-color: var(--primary-color);
    color: white;
}

.btn-cookie:not(.btn-secondary):hover {
    background-color: #234a24;
}

.btn-cookie.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cookie.btn-secondary:hover {
    background-color: white;
    color: var(--text-dark);
}

.about-hero-split {
    display: flex;
    min-height: 500px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.about-hero-image {
    flex: 1;
    background-color: var(--bg-light);
    overflow: hidden;
}

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

.story-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    gap: 3rem;
}

.story-image {
    flex: 1;
    background-color: var(--bg-light);
    overflow: hidden;
}

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

.story-content {
    flex: 1;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.approach-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.approach-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.approach-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.approach-text {
    flex: 2;
}

.approach-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.approach-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.approach-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.approach-number {
    font-size: 6rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.5;
}

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    gap: 3rem;
}

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

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.values-image {
    flex: 1;
    background-color: var(--bg-light);
    overflow: hidden;
}

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

.team-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.stat-card {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-hero {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.services-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

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

.service-detail-card {
    margin-bottom: 4rem;
}

.service-detail-split {
    display: flex;
    gap: 3rem;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
}

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

.service-detail-image {
    flex: 1;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.included-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.included-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.included-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.included-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.included-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-hero {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.contact-content-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    gap: 3rem;
}

.contact-info-section {
    flex: 1;
    padding: 0 2rem;
}

.contact-info-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-email {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-image-section {
    flex: 1;
    background-color: var(--bg-light);
    overflow: hidden;
    border-radius: 8px;
}

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

.contact-additional {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.contact-additional h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.contact-additional-grid {
    display: flex;
    gap: 2rem;
}

.additional-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.additional-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.additional-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.faq-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.faq-split {
    display: flex;
    gap: 3rem;
}

.faq-column {
    flex: 1;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-main-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-next-steps {
    margin: 4rem 0;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.step-item {
    flex: 1;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-info-box {
    background-color: #fff3cd;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.thanks-info-box p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.thanks-additional {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.thanks-additional h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.additional-content-split {
    display: flex;
    gap: 2rem;
}

.additional-content-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.additional-content-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.additional-content-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.additional-content-card a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.additional-content-card a:hover {
    color: #234a24;
}

.legal-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.legal-content ul li {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-update {
    margin-top: 3rem;
    font-style: italic;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .story-split,
    .why-us-split,
    .values-split,
    .form-split,
    .service-detail-split,
    .contact-content-split,
    .about-hero-split {
        flex-direction: column;
    }

    .approach-split,
    .approach-split.reverse {
        flex-direction: column;
    }

    .testimonials-split,
    .stats-grid,
    .faq-split,
    .steps-grid,
    .additional-content-split,
    .contact-additional-grid {
        flex-direction: column;
    }

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

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

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

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

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