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

:root {
    --primary-color: #1a4d8f;
    --secondary-color: #2d7dd2;
    --accent-color: #f39c12;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu li a:hover {
    color: var(--secondary-color);
}

.hero-overlay {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a4d8f 0%, #2d7dd2 50%, #3a8fe8 100%);
    color: var(--white);
    text-align: center;
    padding: 120px 20px 80px;
    margin-top: 70px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,100 Q300,50 600,100 T1200,100 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #e67e22;
}

.cta-primary-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--secondary-color);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 15px 40px;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

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

section {
    padding: 80px 20px;
}

.story-intro {
    background: var(--light-color);
}

.story-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.story-intro p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: italic;
    margin-top: 30px;
}

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

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

.split-text,
.split-visual {
    flex: 1;
}

.split-text h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

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

.problem-list li {
    padding: 15px 0 15px 30px;
    position: relative;
    font-size: 1.1rem;
    border-left: 3px solid var(--accent-color);
    margin-bottom: 15px;
}

.visual-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 1.1rem;
    line-height: 1.5;
}

.insight-reveal {
    background: var(--dark-color);
    color: var(--white);
}

.insight-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.insight-reveal p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.how-it-works {
    background: var(--light-color);
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.process-flow {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

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

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

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.process-step p {
    font-size: 1rem;
    line-height: 1.6;
}

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

.trust-building {
    background: var(--white);
}

.trust-building h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.trust-building p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.badge-item {
    flex: 1;
    padding: 30px;
    background: var(--light-color);
    border-radius: 15px;
    text-align: center;
}

.badge-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.badge-item p {
    font-size: 0.95rem;
    margin: 0;
}

.testimonials-inline {
    background: var(--light-color);
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent-color);
}

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

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

.benefits-reveal {
    background: var(--white);
}

.benefits-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-card {
    flex: 1 1 calc(33.333% - 30px);
    background: var(--light-color);
    padding: 40px;
    border-radius: 15px;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-card p {
    line-height: 1.7;
}

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

.services-pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 50px;
}

.service-form {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.service-option {
    display: block;
    cursor: pointer;
    position: relative;
}

.service-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.option-content {
    padding: 30px;
    border: 3px solid var(--border-color);
    border-radius: 15px;
    transition: var(--transition);
    background: var(--white);
}

.service-option input[type="radio"]:checked + .option-content {
    border-color: var(--primary-color);
    background: rgba(45, 125, 210, 0.05);
}

.service-option.featured {
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.service-option.featured .option-content {
    border-color: var(--accent-color);
    box-shadow: 0 4px 20px rgba(243, 156, 18, 0.2);
}

.option-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

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

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

.form-fields {
    margin-top: 50px;
}

.form-fields h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

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

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

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 30px 0;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 5px;
    width: 18px;
    height: 18px;
}

.form-checkbox label {
    font-size: 0.95rem;
}

.form-checkbox label a {
    color: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.urgency-section {
    background: var(--dark-color);
    color: var(--white);
    text-align: center;
}

.urgency-section h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.urgency-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.urgency-cta {
    margin-top: 40px;
}

.urgency-note {
    margin-top: 20px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.final-trust {
    background: var(--white);
}

.final-trust h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.guarantees {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.guarantee-item {
    padding: 30px;
    background: var(--light-color);
    border-radius: 15px;
    border-left: 5px solid var(--success-color);
}

.guarantee-item h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.guarantee-item p {
    line-height: 1.7;
}

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

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

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

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

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

.sticky-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.sticky-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    z-index: 1001;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.cookie-btn-accept,
.cookie-btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.cookie-btn-reject {
    background: var(--border-color);
    color: var(--text-color);
}

.cookie-btn-reject:hover {
    background: #c0c0c0;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    padding: 120px 20px 80px;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.header-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-story,
.mission-vision,
.values-section,
.team-expertise,
.technology-section,
.security-commitment,
.cta-section,
.services-overview,
.services-detailed,
.additional-services,
.how-it-works-service,
.faq-section,
.contact-info,
.faq-contact,
.map-section,
.legal-content {
    padding: 80px 20px;
}

.mission-box,
.vision-box {
    flex: 1;
    padding: 50px;
    background: var(--light-color);
    border-radius: 15px;
}

.mission-box h2,
.vision-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    flex: 1 1 calc(50% - 30px);
    padding: 40px;
    background: var(--light-color);
    border-radius: 15px;
}

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

.tech-list {
    margin: 30px 0;
    padding-left: 20px;
}

.tech-list li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.security-item {
    padding: 25px;
    background: var(--light-color);
    border-radius: 10px;
}

.security-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.cta-section {
    background: var(--light-color);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-card-detailed {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

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

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

.popular-label {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
}

.service-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.service-body h4 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--dark-color);
}

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

.service-features-detailed li {
    padding: 12px 0 12px 35px;
    position: relative;
    line-height: 1.6;
}

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

.btn-service {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 25px;
    transition: var(--transition);
}

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

.addon-service {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    border-left: 5px solid var(--secondary-color);
}

.addon-service h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.process-step-detailed {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number-large {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
}

.process-step-detailed h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.faq-list,
.faq-item {
    margin: 30px 0;
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.contact-details,
.contact-visual {
    flex: 1;
}

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

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

.contact-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.contact-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.btn-contact {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 15px;
    transition: var(--transition);
}

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

.map-placeholder {
    background: var(--light-color);
    padding: 80px;
    border-radius: 15px;
    text-align: center;
}

.map-placeholder p {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.map-note {
    font-size: 1rem;
    color: #666;
}

.thanks-hero {
    background: linear-gradient(135deg, var(--success-color), #27ae60);
    color: var(--white);
    text-align: center;
    padding: 120px 20px 80px;
    margin-top: 70px;
}

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

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.thanks-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.thanks-details,
.thanks-service-info,
.thanks-resources,
.thanks-contact {
    padding: 80px 20px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.next-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px;
    background: var(--light-color);
    border-radius: 15px;
}

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

.next-step h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-summary {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.resource-cards {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.resource-card {
    flex: 1;
    padding: 30px;
    background: var(--light-color);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-email {
    font-size: 1.3rem;
    margin: 25px 0;
}

.contact-email a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.legal-content {
    background: var(--white);
}

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

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

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

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--secondary-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

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

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

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

.cookie-table tbody tr:hover {
    background: var(--light-color);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .split-content,
    .process-flow,
    .trust-badges,
    .benefits-grid,
    .footer-content,
    .contact-grid,
    .resource-cards {
        flex-direction: column;
    }

    .benefit-card,
    .value-card {
        flex: 1 1 100%;
    }

    .sticky-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

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

    section {
        padding: 60px 20px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .process-step-detailed {
        flex-direction: column;
    }

    .cookie-table {
        font-size: 0.9rem;
    }

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