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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0ea5e9;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: var(--shadow-xl);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 14px;
}

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

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

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

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

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

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

.header-card {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

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

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
}

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

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-image-card {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-primary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-secondary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.cta-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.cta-link:hover {
    gap: 12px;
}

.intro-cards {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.card-grid-3 > * {
    flex: 1;
    min-width: 280px;
}

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

.card-grid-2 > * {
    flex: 1;
    min-width: 320px;
}

.card-grid-4 {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.card-grid-4 > * {
    flex: 1;
    min-width: 200px;
}

.info-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.7;
}

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

.card-split {
    display: flex;
    gap: 60px;
    align-items: center;
    background: var(--bg-white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    line-height: 1.3;
}

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

.split-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.approach-cards {
    padding: 80px 0;
    background: var(--bg-white);
}

.section-title {
    font-size: 36px;
    margin-bottom: 48px;
    color: var(--text-dark);
}

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

.feature-card {
    background: var(--bg-light);
    padding: 36px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

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

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

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

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

.service-card {
    flex: 1;
    min-width: 320px;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(to bottom, #fffbeb 0%, var(--bg-white) 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.service-header h3 {
    font-size: 22px;
    color: var(--text-dark);
}

.age-badge {
    background: var(--secondary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.service-description {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
}

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

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

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

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

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

.testimonial-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    border-top: 4px solid var(--secondary-color);
}

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

.testimonial-author {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
}

.stats-cards {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    opacity: 0.9;
}

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

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.selected-service-display {
    background: var(--bg-white);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    border-left: 4px solid var(--success-color);
}

.enroll-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

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

.final-cta-card {
    padding: 80px 0;
    background: var(--bg-light);
}

.cta-card-large {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-xl);
}

.cta-card-large h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-card-large p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

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

.footer-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

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

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    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 rgba(255, 255, 255, 0.1);
}

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

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

.sticky-cta-btn {
    background: var(--accent-color);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}

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

.page-hero-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero-card h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

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

.mission-cards {
    padding: 80px 0;
    background: var(--bg-light);
}

.mission-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid var(--primary-color);
}

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

.mission-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 12px;
}

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

.values-card {
    background: var(--bg-light);
    padding: 48px;
    border-radius: 16px;
}

.values-card h2 {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: center;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 24px;
    background: var(--bg-white);
    border-radius: 8px;
}

.value-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

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

.team-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--primary-color);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
}

.team-card p {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.7;
}

.impact-stats {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.impact-card {
    flex: 1;
    min-width: 240px;
    background: var(--bg-light);
    padding: 40px 24px;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid var(--secondary-color);
}

.impact-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

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

.cta-card-centered {
    background: var(--bg-white);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-card-centered h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.cta-card-centered p {
    color: var(--text-medium);
    font-size: 18px;
    margin-bottom: 32px;
}

.services-detail-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.service-card-detailed {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.service-card-detailed h4 {
    font-size: 18px;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

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

.comparison-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.comparison-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.comparison-item {
    flex: 1;
    min-width: 280px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
}

.comparison-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.comparison-item p {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

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

.faq-card {
    flex: 1;
    min-width: 280px;
    padding: 28px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

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

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

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

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

.contact-info-card {
    flex: 1;
    min-width: 320px;
}

.contact-info-card h2 {
    font-size: 32px;
    margin-bottom: 32px;
}

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

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

.contact-item a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 4px;
}

.contact-map-card {
    flex: 1;
    min-width: 320px;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.map-info p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 12px;
}

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

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

.reason-card {
    flex: 1;
    min-width: 260px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.reason-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.reason-card p {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.7;
}

.quick-links-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.quick-links-card {
    background: var(--bg-light);
    padding: 48px;
    border-radius: 16px;
}

.quick-links-card h2 {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: center;
}

.quick-links-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.quick-link-item {
    flex: 1;
    min-width: 280px;
    padding: 28px;
    background: var(--bg-white);
    border-radius: 12px;
}

.quick-link-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.quick-link-item p {
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.link-arrow:hover {
    gap: 12px;
}

.thanks-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-card {
    background: var(--bg-white);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
}

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

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.thanks-subtitle {
    font-size: 18px;
    color: var(--text-medium);
}

.thanks-details {
    padding: 80px 0;
    background: var(--bg-white);
}

.thanks-info-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 48px;
    border-radius: 16px;
}

.thanks-info-card h2 {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

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

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

.step-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-contact {
    padding: 60px 0;
    background: var(--bg-light);
}

.contact-card-small {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-card-small h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.contact-card-small p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 8px;
}

.thanks-resources {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.resource-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
}

.resource-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.resource-card p {
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page {
    padding: 80px 0;
    background: var(--bg-white);
}

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

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

.legal-content h2 {
    font-size: 28px;
    margin: 32px 0 16px;
    color: var(--text-dark);
}

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

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

.legal-content ul {
    margin: 16px 0;
    padding-left: 32px;
}

.legal-content ul li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 8px;
}

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

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

.cookie-table th {
    background: var(--bg-light);
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

.cookie-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-medium);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        display: none;
    }

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

    .hamburger {
        display: flex;
    }

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

    .hero-content-card {
        flex-direction: column;
        gap: 40px;
    }

    .card-split {
        flex-direction: column;
        padding: 32px;
    }

    .card-grid-3 > *,
    .card-grid-2 > *,
    .card-grid-4 > * {
        min-width: 100%;
    }

    .form-card {
        padding: 32px 24px;
    }

    .cta-card-large {
        padding: 40px 24px;
    }

    .cta-card-large h2 {
        font-size: 28px;
    }

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

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

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

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

    .section-title,
    .section-title-center {
        font-size: 28px;
    }

    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

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

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .service-price {
        font-size: 28px;
    }

    .stat-number {
        font-size: 36px;
    }

    .impact-number {
        font-size: 40px;
    }
}