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

:root {
    --primary-color: #1a4d2e;
    --secondary-color: #4f772d;
    --accent-color: #90a955;
    --dark-color: #1e1e1e;
    --light-color: #f8f9fa;
    --text-color: #333;
    --border-color: #ddd;
    --white: #ffffff;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie,
.btn-cookie-secondary {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.hero-split {
    min-height: 600px;
    background: linear-gradient(135deg, var(--light-color) 0%, #e8ede3 100%);
}

.split-content {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.hero-text,
.hero-image {
    flex: 1;
    padding: 60px 40px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-text p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 35px;
}

.hero-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.btn-primary,
.btn-secondary,
.btn-primary-large {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 77, 46, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-primary-large {
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 45px;
    font-size: 18px;
}

.btn-primary-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.intro-asymmetric {
    padding: 80px 20px;
    background: var(--white);
}

.container-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-block {
    flex: 1.5;
}

.intro-block h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-weight: 700;
}

.intro-block p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: var(--light-color);
    border-radius: 8px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
}

.services-preview-split {
    background: var(--light-color);
    padding: 80px 0;
}

.split-row {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 60px;
    align-items: center;
}

.split-row:last-child {
    margin-bottom: 0;
}

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

.service-visual,
.service-info {
    flex: 1;
}

.service-visual {
    padding: 30px;
}

.service-visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-info {
    padding: 40px 50px;
}

.service-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
}

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

.service-features {
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
}

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

.price-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    margin: 20px 0;
}

.trust-builder {
    padding: 80px 20px;
    background: var(--white);
}

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

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.trust-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 35px 25px;
    background: var(--light-color);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.trust-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.trust-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 600;
}

.trust-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
}

.testimonials-split {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

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

.testimonial-container h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.testimonial-item {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    font-size: 15px;
}

.process-section {
    padding: 80px 20px;
    background: var(--white);
}

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

.process-timeline {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    padding: 30px 20px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-weight: 600;
}

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

.services-quick {
    padding: 80px 20px;
    background: var(--light-color);
}

.services-quick h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--dark-color);
    font-weight: 700;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

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

.service-card h3 {
    font-size: 20px;
    margin: 20px 20px 12px;
    color: var(--dark-color);
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    margin: 0 20px 15px;
    color: var(--text-color);
    line-height: 1.6;
}

.card-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 20px 20px;
}

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

.form-split-section {
    padding: 80px 20px;
    background: var(--white);
}

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-color);
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.form-wrapper {
    flex: 1;
    background: var(--light-color);
    padding: 40px;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 77, 46, 0.1);
}

.btn-submit {
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.urgency-strip {
    background: var(--accent-color);
    padding: 20px;
    text-align: center;
}

.urgency-strip p {
    font-size: 17px;
    color: var(--dark-color);
}

.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p,
.footer-col li {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.page-hero {
    height: 350px;
    background: linear-gradient(rgba(26, 77, 46, 0.85), rgba(79, 119, 45, 0.85)),
                url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1600&h=400&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    text-align: center;
    color: var(--white);
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-overlay p {
    font-size: 20px;
}

.about-intro-split {
    padding: 80px 20px;
    background: var(--white);
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-weight: 700;
}

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

.about-image {
    flex: 1;
    padding: 30px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.values-section {
    padding: 80px 20px;
    background: var(--light-color);
}

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

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

.team-section-split {
    padding: 80px 20px;
    background: var(--white);
}

.team-visual {
    flex: 1;
    padding: 30px;
}

.team-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.team-info {
    flex: 1;
    padding: 40px 50px;
}

.team-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
}

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

.team-features {
    margin: 25px 0;
}

.team-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
}

.team-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.numbers-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.numbers-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--dark-color);
    font-weight: 700;
}

.numbers-flex {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.number-item {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    text-align: center;
}

.big-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: block;
}

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

.certifications-split {
    padding: 80px 20px;
    background: var(--white);
}

.cert-text {
    flex: 1.2;
}

.cert-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-weight: 700;
}

.cert-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.cert-list {
    margin: 25px 0;
}

.cert-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
}

.cert-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.cert-image {
    flex: 1;
    padding: 30px;
}

.cert-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.cta-about {
    padding: 80px 20px;
    background: var(--light-color);
    text-align: center;
}

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

.cta-about p {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--text-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-intro {
    padding: 60px 20px;
    background: var(--white);
    text-align: center;
}

.intro-text {
    font-size: 19px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-color);
}

.service-detail-split {
    padding: 60px 20px;
    background: var(--white);
}

.service-detail-split.reverse-split {
    background: var(--light-color);
}

.service-image {
    flex: 1;
    padding: 30px;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-content {
    flex: 1;
    padding: 40px 50px;
}

.service-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
}

.service-content h4 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: var(--dark-color);
    font-weight: 600;
}

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

.service-list {
    margin: 15px 0 25px;
}

.service-list li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 16px;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.pricing-box {
    background: var(--light-color);
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
}

.price-label {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.price-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.price-note {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
}

.cta-services {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: var(--white);
}

.cta-services h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-services p {
    font-size: 18px;
    margin-bottom: 35px;
}

.contact-split-section {
    padding: 80px 20px;
    background: var(--white);
}

.contact-container-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

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

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

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

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
}

.contact-detail a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-note {
    padding: 20px;
    background: var(--light-color);
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-map-side h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 600;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 77, 46, 0.9);
    color: var(--white);
    padding: 20px;
}

.map-overlay p {
    font-size: 14px;
    margin: 0;
}

.directions-info h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 600;
}

.directions-info ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.directions-info li {
    font-size: 15px;
    line-height: 1.6;
}

.faq-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.faq-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--dark-color);
    font-weight: 700;
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    padding: 25px;
    background: var(--white);
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.cta-contact {
    padding: 80px 20px;
    background: var(--white);
    text-align: center;
}

.cta-contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
}

.cta-contact p {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--text-color);
}

.thanks-section {
    padding: 100px 20px;
    background: var(--light-color);
    min-height: 600px;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin: 0 auto 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 40px;
    font-weight: 700;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-color);
}

.service-selected {
    margin: 25px 0;
}

.service-info {
    font-size: 17px;
    padding: 15px 25px;
    background: var(--light-color);
    border-radius: 5px;
    display: inline-block;
}

.thanks-info {
    text-align: left;
    margin: 40px 0;
    padding: 30px;
    background: var(--light-color);
    border-radius: 8px;
}

.thanks-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 600;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.next-steps li {
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
}

.thanks-contact {
    margin: 30px 0;
}

.thanks-contact h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 600;
}

.thanks-contact p {
    font-size: 16px;
    line-height: 1.7;
}

.thanks-contact a {
    color: var(--primary-color);
    text-decoration: underline;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
}

.legal-page {
    padding: 80px 20px;
    background: var(--white);
}

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

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
}

.update-date {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-container h2 {
    font-size: 26px;
    margin: 35px 0 15px;
    color: var(--dark-color);
    font-weight: 600;
}

.legal-container h3 {
    font-size: 20px;
    margin: 25px 0 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.legal-container h4 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: var(--dark-color);
    font-weight: 600;
}

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

.legal-container ul {
    margin: 15px 0 15px 25px;
}

.legal-container li {
    list-style: disc;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: var(--text-color);
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
    font-size: 14px;
}

.cookie-table th {
    background: var(--light-color);
    font-weight: 600;
    color: var(--dark-color);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .split-content,
    .split-row,
    .container-asymmetric,
    .form-container-split,
    .contact-container-split {
        flex-direction: column;
    }

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

    .hero-text h1,
    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-text,
    .hero-image,
    .service-info,
    .service-visual,
    .team-info,
    .team-visual,
    .cert-text,
    .cert-image {
        padding: 20px;
    }

    .service-visual img {
        height: 300px;
    }

    h2 {
        font-size: 28px;
    }

    .trust-card,
    .value-card,
    .service-card,
    .faq-item {
        max-width: 100%;
    }

    .testimonial-flex,
    .process-timeline,
    .numbers-flex,
    .cta-buttons,
    .thanks-actions {
        flex-direction: column;
    }

    .cookie-content {
        font-size: 14px;
    }

    .cookie-table {
        font-size: 12px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 8px;
    }
}
