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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #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);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

.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;
    min-width: 250px;
    margin: 0;
}

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

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

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

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

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

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

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

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

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

.hero-text {
    flex: 1;
}

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

.hero-text p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-primary,
.cta-secondary,
.cta-outline {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.cta-primary:hover {
    background-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3);
}

.cta-primary.large {
    padding: 18px 40px;
    font-size: 18px;
}

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

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

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

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

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

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

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

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

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

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

.story-section {
    padding: 100px 20px;
    background-color: white;
}

.story-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
    line-height: 1.3;
}

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

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

.testimonial-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.quote {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text-light);
}

.author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author strong {
    color: var(--text-dark);
    font-size: 16px;
}

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

.benefits-section {
    padding: 100px 20px;
    background-color: white;
}

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

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.benefit-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.benefit-card:nth-child(even) {
    flex-direction: row-reverse;
}

.benefit-card img {
    width: 50%;
    height: 320px;
    object-fit: cover;
}

.benefit-content {
    flex: 1;
    padding: 40px;
}

.benefit-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.benefit-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.courses-preview {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

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

.course-cards {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.course-card {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.course-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

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

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

.course-level {
    background-color: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.course-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.course-highlights {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.course-highlights span {
    font-size: 13px;
    color: var(--text-light);
    background-color: var(--bg-light);
    padding: 6px 12px;
    border-radius: 6px;
}

.course-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: auto;
}

.cta-center {
    text-align: center;
}

.guarantee-section {
    padding: 60px 20px;
    background-color: white;
}

.guarantee-box {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 48px;
    border-radius: 12px;
    text-align: center;
}

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

.guarantee-box p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

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

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.form-intro p {
    color: var(--text-light);
    font-size: 16px;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

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

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

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

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
}

.form-note a {
    color: var(--primary-color);
    text-decoration: none;
}

.trust-section {
    padding: 80px 20px;
    background-color: white;
}

.trust-section h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 48px;
}

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

.stat-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

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

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

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

.cta-final h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 20px;
    margin-bottom: 36px;
    opacity: 0.95;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    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.6;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

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

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

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

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

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-card-detailed {
    background-color: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
}

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

.service-badge.premium {
    background-color: #8b5cf6;
}

.service-card-detailed h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-price-large {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 24px;
}

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

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

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

.service-details ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-light);
}

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

.service-meta {
    display: flex;
    gap: 20px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.service-meta span {
    font-size: 14px;
    color: var(--text-light);
}

.btn-course {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.comparison-section {
    padding: 80px 20px;
    background-color: white;
}

.comparison-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

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

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

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

.comparison-table tbody tr.highlighted-row {
    background-color: rgba(37, 99, 235, 0.05);
}

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

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

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

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

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

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

.story-image {
    flex: 1;
    max-width: 500px;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

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

.team-section {
    padding: 80px 20px;
    background-color: white;
}

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

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

.team-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-card h3 {
    font-size: 22px;
    margin: 20px 0 8px;
    padding: 0 20px;
}

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

.team-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    padding: 0 20px 24px;
}

.stats-about {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.stats-about h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

.stats-grid-about {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

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

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

.mission-section {
    padding: 100px 20px;
    background-color: white;
}

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

.mission-text {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
    text-align: center;
}

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

.cta-about h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-about p {
    font-size: 19px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.contact-main {
    padding: 80px 20px;
    background-color: white;
}

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

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

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

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

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

.contact-map {
    border-radius: 12px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.contact-form-section {
    flex: 1;
    min-width: 300px;
}

.contact-form-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.contact-form-section p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.info-note {
    background-color: var(--bg-light);
    padding: 16px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.info-note p {
    margin: 0;
    font-size: 14px;
    color: var(--text-dark);
}

.info-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

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

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

.faq-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    background-color: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

.thanks-section {
    padding: 100px 20px;
    background-color: white;
}

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

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

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

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

.course-info {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 48px;
}

.course-info h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.course-info p {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.next-steps {
    margin-bottom: 48px;
}

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

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

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

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

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

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

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

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

.support-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.support-box h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.support-box p {
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-page {
    padding: 80px 20px;
    background-color: white;
}

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

.update-date {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 48px;
}

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

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

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

.legal-page ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

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

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .hero-text p {
        font-size: 18px;
    }

    .benefit-card {
        flex-direction: column !important;
    }

    .benefit-card img {
        width: 100%;
    }

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

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

    .form-row {
        flex-direction: column;
    }

    .faq-card {
        flex: 1 1 100%;
    }
}
