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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #ff6b35;
    --accent-color: #4a90e2;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --border-color: #dee2e6;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #e55a2b;
    transform: translateY(-1px);
}

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

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

.main-header {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.ad-label {
    background: var(--light-bg);
    padding: 6px 12px;
    font-size: 12px;
    color: var(--gray);
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.hero-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8edf2 100%);
}

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

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 30px;
}

.cta-primary {
    background: var(--secondary-color);
    color: var(--white);
    padding: 16px 36px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background: var(--light-bg);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hook-section {
    padding: 60px 20px;
    background: var(--white);
}

.hook-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hook-card h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hook-card p {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.8;
}

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

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

.problem-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
}

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

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

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

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.insight-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background: var(--light-bg);
}

.insight-image img {
    width: 100%;
    height: auto;
    display: block;
}

.insight-content {
    flex: 1;
}

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

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

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

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

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.benefits-section {
    padding: 60px 20px;
    background: var(--white);
}

.benefits-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.benefit-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

.services-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: var(--gray);
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--light-bg);
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-content p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.feature {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 6px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0 15px;
}

.btn-select {
    width: 100%;
    background: var(--accent-color);
    color: var(--white);
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #3a7bc8;
    transform: translateY(-1px);
}

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

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

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 17px;
    color: var(--gray);
}

.contact-form {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

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

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

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

.final-cta {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #2c6bb5 100%);
    color: var(--white);
}

.final-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--white);
}

.final-cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-secondary {
    background: var(--white);
    color: var(--accent-color);
    padding: 16px 36px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

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

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: var(--white);
    border-left: 4px solid var(--secondary-color);
    border-radius: 6px;
}

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

.disclaimer p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

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

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

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

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 8px;
}

.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: color 0.3s ease;
}

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

.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);
}

.about-hero,
.services-hero,
.contact-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8edf2 100%);
    text-align: center;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 60px 20px;
    background: var(--white);
}

.story-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.story-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background: var(--light-bg);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-content {
    flex: 1;
}

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

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

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

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
}

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

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

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

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

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

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 30px;
    border-radius: 8px;
    background: var(--light-bg);
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

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

.step-card p {
    color: var(--text-color);
    line-height: 1.6;
}

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

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

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 17px;
    color: var(--gray);
}

.team-image {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
}

.team-image img {
    width: 100%;
    height: auto;
    display: block;
}

.mission-section {
    padding: 60px 20px;
    background: var(--white);
}

.mission-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 10px;
}

.mission-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

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

.services-main {
    padding: 60px 20px;
    background: var(--white);
}

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

.guarantee-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.guarantee-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
}

.guarantee-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

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

.contact-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

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

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

.contact-note {
    font-size: 14px;
    color: var(--gray);
    margin-top: 8px;
}

.contact-map-section {
    padding: 60px 20px;
    background: var(--light-bg);
    text-align: center;
}

.contact-map-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-map-section p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-color);
    line-height: 1.7;
}

.faq-section {
    padding: 60px 20px;
    background: var(--white);
}

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

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

.faq-item {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 8px;
}

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

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

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

.support-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: 10px;
}

.support-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.support-card p {
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.7;
}

.support-card ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.support-card ul li {
    color: var(--text-color);
    margin-bottom: 8px;
    line-height: 1.6;
}

.thanks-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8edf2 100%);
    min-height: 60vh;
}

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: var(--hover-shadow);
    text-align: center;
}

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

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.timeline {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

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

.timeline-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--primary-color);
}

.timeline-content p {
    color: var(--text-color);
    line-height: 1.6;
}

.service-selected {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.service-selected h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.service-selected p {
    color: var(--text-color);
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

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

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

.next-steps {
    padding: 60px 20px;
    background: var(--white);
}

.next-steps h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.next-steps-grid .step-card {
    background: var(--light-bg);
}

.next-steps-grid .step-card a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.next-steps-grid .step-card a:hover {
    text-decoration: underline;
}

.contact-reminder {
    padding: 40px 20px;
    background: var(--light-bg);
}

.reminder-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    text-align: center;
}

.reminder-card h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-updated {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 40px;
}

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.legal-content ul,
.legal-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li,
.legal-content ol li {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 10px;
}

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

.legal-content a:hover {
    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);
}

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

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

@media (max-width: 768px) {
    .hero-card,
    .insight-wrapper,
    .story-wrapper {
        flex-direction: column;
    }

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

    .main-nav {
        gap: 15px;
        flex-wrap: wrap;
    }

    .services-cards,
    .benefits-grid,
    .testimonials-grid,
    .problem-grid,
    .values-grid,
    .process-steps,
    .guarantee-grid,
    .contact-grid,
    .faq-grid,
    .next-steps-grid {
        flex-direction: column;
    }

    .service-card,
    .benefit-card,
    .testimonial-card,
    .problem-card,
    .value-card,
    .step-card,
    .guarantee-card,
    .contact-card,
    .faq-item {
        max-width: 100%;
    }

    .cookie-content {
        flex-direction: column;
    }

    .thanks-card {
        padding: 40px 25px;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
