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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --accent-orange: #f59e0b;
    --accent-red: #ef4444;
}

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

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

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

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

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }
}

.hero-overlay {
    margin-top: 60px;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.hero-image-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85), rgba(16, 185, 129, 0.75));
}

.hero-overlay-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

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

.hero-subtext {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

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

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

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

.problem-amplify {
    padding: 100px 20px;
    background: var(--bg-white);
}

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

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

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

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

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: 700;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 968px) {
    .split-layout {
        flex-direction: column;
    }

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

.insight-reveal {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.insight-box {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

.insight-box p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 15px;
}

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

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

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

.stat-card {
    flex: 0 1 250px;
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

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

.testimonials-inline {
    padding: 80px 20px;
    background: var(--bg-white);
}

.testimonial {
    margin: 40px 0;
    padding: 35px;
    background: var(--bg-light);
    border-left: 5px solid var(--secondary-color);
    border-radius: 8px;
}

.testimonial p {
    font-size: 19px;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

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

.how-it-works {
    padding: 100px 20px;
    background: var(--bg-light);
}

.how-it-works h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
}

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

.step-item {
    flex: 0 1 270px;
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

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

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

.benefits-deep h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.benefits-deep > p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-medium);
}

.benefit-blocks {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.benefit-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
}

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

.benefit-card p {
    font-size: 16px;
    color: var(--text-medium);
}

.cta-section-inline {
    padding: 80px 20px;
    background: var(--primary-color);
}

.cta-box {
    text-align: center;
    color: white;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h3 {
    font-size: 36px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 16px 45px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    color: var(--primary-color);
}

.services-pricing {
    padding: 100px 20px;
    background: var(--bg-white);
}

.services-pricing h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 60px;
}

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

.price-card {
    flex: 0 1 350px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.price-card.featured {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

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

.price {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: block;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: var(--text-medium);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.select-service {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.urgency-section {
    padding: 80px 20px;
    background: #fef3c7;
}

.urgency-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border-left: 6px solid var(--accent-orange);
}

.urgency-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.urgency-box p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 15px;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    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);
}

.submit-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .form-container {
        padding: 30px 25px;
    }
}

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

.final-trust h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
}

.faq-simple {
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

.footer-section p {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 14px;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    padding: 15px 20px;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.sticky-cta-btn {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.sticky-cta-btn:hover {
    color: white;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 3px solid var(--primary-color);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

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

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

.btn-cookie-alt:hover {
    background: #d1d5db;
}

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

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

.story-block {
    margin: 50px 0;
}

.story-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.story-block p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.story-image {
    border-radius: 12px;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
}

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

.value-card {
    flex: 0 1 calc(50% - 15px);
    min-width: 280px;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.value-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.impact-numbers {
    padding: 100px 20px;
    background: var(--bg-white);
}

.impact-numbers h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
}

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

.impact-stat {
    flex: 0 1 250px;
    text-align: center;
}

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

.impact-stat p {
    font-size: 16px;
    color: var(--text-medium);
}

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

.team-approach h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.team-approach > p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.expertise-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

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

.expertise-item p {
    font-size: 16px;
    color: var(--text-medium);
}

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

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

.commitment-box h2 {
    font-size: 40px;
    margin-bottom: 25px;
}

.commitment-box p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.services-detailed {
    padding: 80px 20px;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 50px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

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

.service-description {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--text-dark);
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 16px;
    color: var(--text-medium);
}

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

.pricing-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.price-large {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
}

.btn-service {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

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

.popular-tag {
    background: var(--secondary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-detail-image {
    flex: 0 0 400px;
}

.service-detail-image img {
    border-radius: 12px;
}

@media (max-width: 968px) {
    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 1;
        width: 100%;
    }
}

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

.why-pricing h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.why-pricing p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
    border-left: 6px solid var(--secondary-color);
}

.guarantee-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.guarantee-box p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.cta-services-bottom {
    padding: 100px 20px;
    background: var(--primary-color);
    text-align: center;
    color: white;
}

.cta-services-bottom h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

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

.cta-button-large {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 18px 50px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-button-large:hover {
    transform: scale(1.05);
    color: var(--primary-color);
}

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

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

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

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

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

.response-time {
    margin-top: 30px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 12px;
    margin-bottom: 30px;
}

.quick-links-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

.quick-links-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.quick-links-box ul {
    list-style: none;
}

.quick-links-box ul li {
    margin-bottom: 12px;
}

@media (max-width: 968px) {
    .contact-grid {
        flex-direction: column;
    }
}

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

.faq-contact h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-box {
    flex: 0 1 calc(50% - 15px);
    min-width: 280px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-box h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-box p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

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

.cta-contact-bottom h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-contact-bottom p {
    font-size: 18px;
    margin-bottom: 30px;
}

.legal-page {
    padding: 100px 20px 80px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

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

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.legal-page ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-page ul li {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.cookie-table thead {
    background: var(--bg-light);
}

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

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

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

.thanks-hero {
    padding: 120px 20px 100px;
    background: var(--bg-light);
}

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

.thanks-icon {
    margin: 0 auto 30px;
    width: 80px;
}

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

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

.service-confirmation {
    background: #ecfdf5;
    border: 2px solid var(--secondary-color);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.service-selected {
    font-size: 18px;
    color: var(--text-dark);
    margin: 0;
}

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

.next-steps h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

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

.timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

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

.thanks-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

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

.btn-secondary,
.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    margin: 0 10px 10px 10px;
    transition: all 0.3s ease;
}

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

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

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

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

.email-reminder {
    margin-top: 50px;
    padding: 25px;
    background: #fef3c7;
    border-radius: 8px;
}

.email-reminder p {
    margin: 0;
    font-size: 16px;
    color: var(--text-dark);
}