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

:root {
    --primary-green: #2d5016;
    --primary-green-dark: #1f3810;
    --primary-green-light: #3d6b20;
    --accent-gold: #c5a572;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-white: #ffffff;
    --bg-light: #f8f9f7;
    --bg-cream: #faf8f5;
    --border-light: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.main-nav {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s;
}

.hero-section {
    min-height: 600px;
    background: linear-gradient(135deg, rgba(45,80,22,0.92) 0%, rgba(31,56,16,0.88) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%233d6b20" width="1200" height="600"/><path fill="%232d5016" opacity="0.3" d="M0 300 Q300 150 600 300 T1200 300 V600 H0 Z"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 24px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(197,165,114,0.1) 0%, transparent 50%);
}

.hero-content {
    max-width: 800px;
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
}

.cta-primary {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--text-dark);
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background-color: #d4b586;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.intro-section {
    padding: 100px 24px 80px;
    background-color: var(--bg-cream);
}

.intro-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--primary-green);
    line-height: 1.3;
}

.intro-section p {
    font-size: 19px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.value-section {
    padding: 90px 24px;
    background-color: var(--bg-white);
}

.value-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
}

.value-icon {
    margin-bottom: 24px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--primary-green);
}

.value-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.services-preview {
    padding: 100px 24px;
    background-color: var(--bg-light);
}

.section-header-offset {
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.section-header-offset h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1.25;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 64px;
    margin-bottom: 60px;
}

.service-item {
    display: flex;
    gap: 56px;
    align-items: center;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

.service-visual {
    flex: 0 0 350px;
    height: 280px;
    background: linear-gradient(135deg, #3d6b20 0%, #2d5016 100%);
    border-radius: 6px;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-green);
}

.service-info p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.price-tag {
    display: inline-block;
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.link-arrow {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s;
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(4px);
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

.cta-secondary {
    display: inline-block;
    background-color: var(--primary-green);
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: var(--primary-green-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.problem-section {
    padding: 100px 24px;
    background-color: var(--primary-green);
    color: white;
}

.problem-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.3;
}

.problem-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.process-section {
    padding: 100px 24px;
    background-color: var(--bg-cream);
}

.process-section h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-green);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    background-color: var(--accent-gold);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-green);
}

.step p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.step-connector {
    flex: 0 0 80px;
    height: 2px;
    background-color: var(--border-light);
    margin-top: 32px;
}

.form-section {
    padding: 100px 24px;
    background-color: var(--bg-white);
}

.form-header {
    text-align: center;
    margin-bottom: 48px;
}

.form-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-green);
}

.form-header p {
    font-size: 18px;
    color: var(--text-medium);
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
    flex: 1;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-light);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.btn-submit {
    width: 100%;
    background-color: var(--primary-green);
    color: white;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: var(--primary-green-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.trust-section {
    padding: 100px 24px;
    background-color: var(--bg-light);
}

.trust-section h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-green);
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
    font-style: italic;
}

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

.final-cta-section {
    padding: 120px 24px;
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
    color: white;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.final-cta-section p {
    font-size: 19px;
    margin-bottom: 36px;
    opacity: 0.95;
}

.cta-primary-large {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--text-dark);
    padding: 20px 48px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-primary-large:hover {
    background-color: #d4b586;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.main-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

.footer-section h3 {
    font-size: 24px;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.footer-section h4 {
    font-size: 16px;
    color: white;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 14px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-green-dark);
    color: white;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    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: 32px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-accept {
    background-color: var(--accent-gold);
    color: var(--text-dark);
}

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

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

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

.page-hero {
    padding: 80px 24px 60px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.hero-lead {
    font-size: 20px;
    opacity: 0.95;
}

.services-full {
    padding: 80px 24px;
    background-color: var(--bg-white);
}

.service-detailed {
    margin-bottom: 80px;
    padding: 56px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.service-detailed.alt {
    background-color: var(--bg-cream);
}

.service-badge {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--text-dark);
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.service-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.service-content p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 32px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.feature-item {
    font-size: 16px;
    color: var(--text-dark);
    padding: 8px 0;
}

.pricing-box {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 6px;
    border: 2px solid var(--border-light);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row span {
    font-size: 16px;
    color: var(--text-dark);
}

.price-row strong {
    font-size: 19px;
    color: var(--primary-green);
    font-weight: 700;
}

.service-cta-section {
    padding: 100px 24px;
    background-color: var(--bg-light);
    text-align: center;
}

.service-cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.service-cta-section p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 36px;
}

.about-intro {
    padding: 80px 24px;
    background-color: var(--bg-white);
}

.about-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--primary-green);
}

.about-intro p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-section {
    padding: 90px 24px;
    background-color: var(--bg-cream);
}

.values-section h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-green);
}

.values-blocks {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.value-block {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.value-block h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-green);
}

.value-block p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
}

.team-section {
    padding: 90px 24px;
    background-color: var(--bg-white);
}

.team-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--primary-green);
}

.team-section p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.approach-section {
    padding: 90px 24px;
    background-color: var(--bg-light);
}

.approach-section h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-green);
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.approach-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.approach-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-green);
}

.approach-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.philosophy-section {
    padding: 90px 24px;
    background-color: var(--bg-cream);
}

.philosophy-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--primary-green);
}

.philosophy-section p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.numbers-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: white;
}

.numbers-section h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.numbers-grid {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.number-card {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.big-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.number-label {
    font-size: 16px;
    opacity: 0.95;
}

.cta-about-section {
    padding: 100px 24px;
    background-color: var(--bg-white);
    text-align: center;
}

.cta-about-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.cta-about-section p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 36px;
}

.contact-content {
    padding: 80px 24px;
    background-color: var(--bg-white);
}

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

.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 36px;
    color: var(--primary-green);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-green);
}

.contact-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item .note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
    font-style: italic;
}

.contact-form-side {
    flex: 1;
}

.contact-form-side h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-green);
}

.contact-form-side p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 24px;
}

.note-info {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.faq-section {
    padding: 90px 24px;
    background-color: var(--bg-light);
}

.faq-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    color: var(--primary-green);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-green);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-section {
    padding: 120px 24px;
    background-color: var(--bg-white);
}

.thanks-content {
    text-align: center;
}

.success-icon {
    margin-bottom: 32px;
}

.thanks-content h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.thanks-content .lead {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 60px;
}

.thanks-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary-green);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    background-color: var(--accent-gold);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.step-text h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-green);
}

.step-text p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.selected-service {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.selected-service h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.service-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-green);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.contact-reminder {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-reminder p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-reminder strong {
    color: var(--primary-green);
}

.contact-reminder a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
}

.contact-reminder a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 60px 24px 100px;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--primary-green);
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--primary-green-dark);
}

.legal-page h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 8px;
}

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

.legal-page a:hover {
    color: var(--primary-green-light);
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: var(--shadow-md);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid var(--border-light);
    }

    .nav-links a {
        display: block;
        padding: 16px 24px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .intro-section h2 {
        font-size: 28px;
    }

    .value-grid {
        gap: 32px;
    }

    .service-item,
    .service-item.reverse {
        flex-direction: column;
        padding: 32px;
    }

    .service-visual {
        flex: none;
        width: 100%;
        height: 220px;
    }

    .process-steps {
        flex-direction: column;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 12px auto;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
    }

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

    .service-detailed {
        padding: 32px 24px;
    }

    .values-blocks {
        gap: 32px;
    }

    .approach-grid {
        gap: 24px;
    }

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

    .numbers-grid {
        gap: 32px;
    }

    .contact-layout {
        flex-direction: column;
        gap: 48px;
    }

    .form-row {
        flex-direction: column;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .final-cta-section h2 {
        font-size: 32px;
    }

    .service-content h2 {
        font-size: 28px;
    }
}