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

:root {
    --primary-color: #4a90e2;
    --primary-dark: #357abd;
    --secondary-color: #27ae60;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --error-color: #e74c3c;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.nav-menu a:hover {
    background: var(--background-light);
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: var(--background-light);
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    padding: var(--spacing-xl);
}

.hero-right img {
    width: 100%;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.cta-inline {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    padding: var(--spacing-sm) var(--spacing-md);
    border-bottom: 2px solid var(--primary-color);
    transition: color 0.3s ease;
}

.cta-inline:hover {
    color: var(--primary-dark);
}

.trust-indicators {
    padding: var(--spacing-xl) 0;
    background: var(--background-white);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: var(--spacing-md);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

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

.split-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    padding: var(--spacing-xxl) var(--spacing-lg);
}

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

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.content-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.image-block {
    flex: 1;
}

.image-block img {
    width: 100%;
    border-radius: 8px;
}

.problem-section {
    background: var(--background-white);
}

.insight-section {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.insight-section h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

.insight-text {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
}

.testimonial-inline {
    padding: var(--spacing-xxl) 0;
    background: var(--background-light);
}

.testimonial-card {
    background: var(--background-white);
    padding: var(--spacing-xl);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.testimonial-card cite {
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.benefits-reveal {
    padding: var(--spacing-xxl) 0;
    background: var(--background-white);
}

.benefits-reveal h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xl);
}

.benefits-split {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.4rem;
}

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

.services-preview {
    background: var(--background-light);
}

.service-list {
    list-style: none;
    margin: var(--spacing-md) 0;
}

.service-list li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.cta-section {
    padding: var(--spacing-xxl) 0;
    background: var(--background-white);
}

.cta-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.cta-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
}

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

.form-group {
    margin-bottom: var(--spacing-md);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: var(--spacing-md);
}

.final-testimonial {
    background: var(--background-light);
    padding: var(--spacing-xxl) 0;
}

.testimonial-large {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-large p {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.urgency-section {
    background: #fff3cd;
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.urgency-section h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
    color: #856404;
}

.urgency-section p {
    color: #856404;
    margin-bottom: var(--spacing-md);
}

.sticky-cta {
    position: fixed;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    z-index: 99;
}

.sticky-btn {
    display: block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #229954;
    transform: scale(1.05);
}

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-column h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

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

.footer-column ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-column a {
    color: #bdc3c7;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid #34495e;
    color: #7f8c8d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.cookie-content p {
    color: white;
    margin: 0;
}

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

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

.btn-accept,
.btn-reject {
    padding: var(--spacing-xs) var(--spacing-md);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #229954;
}

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

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.story-section {
    padding: var(--spacing-xxl) 0;
    background: var(--background-light);
}

.values-section {
    padding: var(--spacing-xxl) 0;
    background: var(--background-white);
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xl);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: var(--spacing-lg);
    background: var(--background-light);
    border-radius: 8px;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

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

.team-approach {
    padding: var(--spacing-xxl) 0;
    background: var(--background-light);
}

.team-approach h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

.team-approach p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.numbers-section {
    padding: var(--spacing-xxl) 0;
    background: var(--background-white);
}

.numbers-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xl);
}

.numbers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    justify-content: center;
}

.number-item {
    text-align: center;
    min-width: 200px;
}

.big-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.number-item p {
    color: var(--text-light);
}

.certifications {
    padding: var(--spacing-xxl) 0;
    background: var(--background-light);
}

.cta-about {
    padding: var(--spacing-xxl) 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
}

.services-intro {
    padding: var(--spacing-lg) 0;
    background: var(--background-light);
}

.intro-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.services-list {
    padding: var(--spacing-xl) 0;
}

.service-item {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    background: var(--background-white);
}

.service-item.reverse {
    flex-direction: row-reverse;
    background: var(--background-light);
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: var(--spacing-md) 0;
}

.service-features li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--text-light);
}

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

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--border-color);
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-service {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.service-image {
    flex: 1;
    max-width: 400px;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
}

.pricing-note {
    padding: var(--spacing-xxl) 0;
    background: var(--background-light);
}

.pricing-note h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xl);
}

.included-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto;
}

.included-item {
    flex: 1;
    min-width: 220px;
    background: var(--background-white);
    padding: var(--spacing-lg);
    border-radius: 8px;
}

.included-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

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

.cta-services {
    padding: var(--spacing-xxl) 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
}

.contact-info {
    padding: var(--spacing-xxl) 0;
    background: var(--background-white);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.contact-card {
    flex: 1;
    min-width: 250px;
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: 8px;
}

.contact-card h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.contact-detail {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.contact-detail a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-cta {
    padding: var(--spacing-xxl) 0;
    background: var(--background-light);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.contact-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.map-section {
    padding: var(--spacing-xxl) 0;
    background: var(--background-white);
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

.map-placeholder {
    max-width: 900px;
    margin: 0 auto;
}

.map-placeholder img {
    width: 100%;
    border-radius: 8px;
}

.faq-contact {
    padding: var(--spacing-xxl) 0;
    background: var(--background-light);
}

.faq-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xl);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.faq-item {
    background: var(--background-white);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

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

.thanks-hero {
    padding: var(--spacing-xxl) 0;
    background: var(--background-light);
}

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

.thanks-icon {
    max-width: 150px;
    margin: 0 auto var(--spacing-lg);
}

.thanks-content h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
}

.service-confirmation {
    background: var(--background-white);
    padding: var(--spacing-md);
    border-radius: 8px;
    margin-bottom: var(--spacing-lg);
    border-left: 4px solid var(--primary-color);
}

.next-steps {
    background: var(--background-white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    margin-bottom: var(--spacing-lg);
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-left: var(--spacing-xl);
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: var(--spacing-md);
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.additional-info {
    color: var(--text-light);
    font-size: 0.95rem;
}

.trust-section {
    padding: var(--spacing-xxl) 0;
    background: var(--background-white);
}

.trust-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xl);
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
}

.trust-stat {
    text-align: center;
}

.stat-big {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
}

.trust-stat p {
    color: var(--text-light);
}

.legal-page {
    padding: var(--spacing-xxl) 0;
    background: var(--background-white);
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: var(--spacing-lg);
}

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    color: var(--text-light);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-lg) 0;
}

.cookies-table th,
.cookies-table td {
    padding: var(--spacing-sm);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

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

.cookies-table td {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

    .split-container,
    .split-container.reverse {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .stats-grid,
    .benefits-split,
    .values-grid,
    .numbers-grid,
    .contact-grid,
    .trust-stats {
        flex-direction: column;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }

    .service-item,
    .service-item.reverse {
        flex-direction: column;
        padding: var(--spacing-md);
    }

    .service-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }

    .footer-container {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        bottom: var(--spacing-sm);
        right: var(--spacing-sm);
        left: var(--spacing-sm);
    }

    .sticky-btn {
        display: block;
        text-align: center;
    }

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

    .page-hero h1 {
        font-size: 2rem;
    }

    .cookies-table {
        font-size: 0.85rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: var(--spacing-xs);
    }
}