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

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #57a6c3;
    --accent-color: #f39c12;
    --dark-bg: #0d2535;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --white: #ffffff;
}

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

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

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

.nav-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand a {
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

.hero-funnel {
    min-height: 600px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"%3E%3Cpath fill="%23ffffff" opacity="0.05" d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z"/%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    max-width: 800px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(243,156,18,0.3);
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(243,156,18,0.4);
}

.intro-hook {
    padding: 100px 20px;
    background: var(--white);
}

.intro-hook h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.lead-text {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 400;
}

.intro-hook p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.problem-list {
    list-style: none;
    margin-top: 30px;
}

.problem-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 17px;
    color: var(--text-dark);
}

.problem-list li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 20px;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.story-section {
    padding: 100px 20px;
    background: var(--white);
}

.story-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.story-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.9;
}

.highlight-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 25px;
    background: #e8f4f8;
    border-left: 4px solid var(--accent-color);
    margin: 30px 0;
    border-radius: 4px;
}

.insight-reveal {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.card-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.insight-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

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

.btn-primary-large {
    display: inline-block;
    padding: 20px 50px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(26,95,122,0.3);
}

.btn-primary-large:hover {
    background: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26,95,122,0.4);
}

.trust-section {
    padding: 100px 20px;
    background: var(--dark-bg);
    color: var(--white);
}

.trust-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--white);
    text-align: center;
}

.testimonial {
    background: rgba(255,255,255,0.05);
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.testimonial-author {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 600;
}

.method-section {
    padding: 100px 20px;
    background: var(--white);
}

.method-steps {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

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

.step-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.benefits-reveal {
    padding: 80px 20px;
    background: var(--light-bg);
}

.benefits-reveal h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.benefits-list {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.check-icon {
    font-size: 24px;
    color: var(--success-color);
    font-weight: 700;
}

.benefit-item p {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.6;
}

.services-preview {
    padding: 100px 20px;
    background: linear-gradient(135deg, #e8f4f8 0%, #ffffff 100%);
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

.service-card.featured {
    border: 3px solid var(--accent-color);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.service-features li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 25px 0;
    text-align: center;
}

.btn-service {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.urgency-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

.guarantee-box {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 2px solid var(--accent-color);
}

.guarantee-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.guarantee-box p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

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

.form-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-dark);
    text-align: center;
}

.form-section > div > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

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

.form-group {
    margin-bottom: 25px;
}

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

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

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.final-cta h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--white);
}

.final-cta p {
    font-size: 19px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

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

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.sticky-btn {
    display: block;
    padding: 15px 30px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(243,156,18,0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(243,156,18,0.5);
}

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

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

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

.page-hero h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.page-hero .lead-text {
    color: rgba(255,255,255,0.9);
    font-size: 20px;
}

.about-content {
    padding: 80px 20px;
}

.about-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

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

.values-list {
    list-style: none;
    margin: 25px 0;
}

.values-list li {
    padding: 15px;
    margin-bottom: 15px;
    background: var(--light-bg);
    border-radius: 8px;
    font-size: 16px;
}

.values-list li strong {
    color: var(--primary-color);
}

.cta-section-small {
    margin-top: 60px;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 12px;
    text-align: center;
}

.cta-section-small h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s;
}

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

.services-full {
    padding: 60px 20px 100px;
}

.service-detail {
    background: var(--white);
    padding: 50px;
    margin-bottom: 60px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.service-detail h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-price-large {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 20px 0;
}

.service-intro {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.service-detail h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.service-detail h4 {
    font-size: 20px;
    margin: 20px 0 10px;
    color: var(--text-dark);
}

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

.service-features-detailed {
    list-style: none;
    margin: 20px 0;
}

.service-features-detailed li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

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

.featured-service {
    border: 3px solid var(--accent-color);
    position: relative;
}

.badge-large {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
}

.guarantee-badge {
    background: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 4px solid var(--success-color);
}

.guarantee-badge strong {
    color: var(--primary-color);
}

.btn-service-large {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.3s;
}

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

.disclaimer-small {
    font-size: 14px;
    color: var(--text-light);
}

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

.services-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.services-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 700;
    margin-left: 15px;
    transition: all 0.3s;
}

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

.contact-section {
    padding: 60px 20px 100px;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info,
.contact-info-additional {
    flex: 1;
}

.contact-info h2,
.contact-info-additional h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

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

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

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

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

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.thanks-section {
    padding: 100px 20px;
    min-height: 70vh;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.service-confirmation {
    margin: 30px 0;
}

.selected-service-box {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.selected-service-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.next-steps {
    text-align: left;
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    align-items: flex-start;
}

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

.step-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

.thanks-cta {
    margin: 50px 0;
}

.thanks-cta p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.thanks-additional {
    margin-top: 50px;
    padding: 30px;
    background: #fff3cd;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

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

.thanks-additional p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.7;
}

.thanks-additional a {
    color: var(--primary-color);
    text-decoration: none;
}

.thanks-additional a:hover {
    text-decoration: underline;
}

.legal-content {
    padding: 60px 20px 100px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

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

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

.legal-content ul {
    margin: 15px 0 15px 20px;
}

.legal-content ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

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

.legal-content a:hover {
    text-decoration: underline;
}

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

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

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

.cookie-table td {
    font-size: 15px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-main {
        padding: 15px 20px;
    }

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

    .hero-title {
        font-size: 36px;
    }

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

    .split-content {
        flex-direction: column;
        gap: 30px;
    }

    .method-steps {
        flex-direction: column;
        gap: 30px;
    }

    .cards-grid {
        flex-direction: column;
    }

    .services-cards {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}
