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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    background-color: #F7F9FC;
}

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

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    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;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #50E3C2;
    color: #2C3E50;
}

.btn-accept:hover {
    background: #3DCFAD;
    transform: translateY(-2px);
}

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

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

.main-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #4A90E2;
}

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

.nav-links a {
    text-decoration: none;
    color: #2C3E50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4A90E2;
}

.ad-label {
    font-size: 11px;
    color: #7F8C8D;
    background: #ECF0F1;
    padding: 4px 10px;
    border-radius: 4px;
}

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

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #2C3E50;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
}

.mobile-menu a {
    text-decoration: none;
    color: #2C3E50;
    font-weight: 500;
    padding: 10px;
    border-bottom: 1px solid #ECF0F1;
}

.ad-label-mobile {
    font-size: 11px;
    color: #7F8C8D;
    background: #ECF0F1;
    padding: 8px 10px;
    border-radius: 4px;
    text-align: center;
}

.hero-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

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

.hero-image {
    margin-top: 40px;
    max-width: 100%;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.intro-cards {
    padding: 80px 20px;
}

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

.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2C3E50;
}

.info-card p {
    color: #7F8C8D;
    line-height: 1.7;
}

.why-section {
    padding: 80px 20px;
    background: #fff;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-centered h2 {
    font-size: 36px;
    color: #2C3E50;
    margin-bottom: 15px;
}

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

.why-text {
    flex: 1;
    min-width: 300px;
}

.why-text p {
    margin-bottom: 20px;
    color: #5A6C7D;
    line-height: 1.8;
    font-size: 17px;
}

.inline-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #4A90E2;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    background: #357ABD;
    transform: translateY(-2px);
}

.why-visual {
    flex: 1;
    min-width: 300px;
}

.why-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.programs-section {
    padding: 80px 20px;
    background: #F7F9FC;
}

.section-header-left {
    margin-bottom: 50px;
}

.section-header-left h2 {
    font-size: 36px;
    color: #2C3E50;
    margin-bottom: 10px;
}

.section-header-left p {
    font-size: 18px;
    color: #7F8C8D;
}

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

.program-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.program-card.featured {
    border: 3px solid #4A90E2;
}

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

.program-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #ECF0F1;
    color: #7F8C8D;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    width: fit-content;
}

.program-tag.popular {
    background: #FFF4E6;
    color: #F5A623;
}

.program-card h3 {
    font-size: 24px;
    color: #2C3E50;
    margin-bottom: 15px;
}

.program-desc {
    color: #5A6C7D;
    margin-bottom: 25px;
    line-height: 1.7;
    flex-grow: 1;
}

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

.program-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #5A6C7D;
    font-size: 15px;
}

.program-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #50E3C2;
    font-weight: 700;
}

.program-price {
    font-size: 32px;
    font-weight: 700;
    color: #4A90E2;
    margin-bottom: 20px;
}

.btn-select-program {
    width: 100%;
    padding: 14px;
    background: #4A90E2;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-program:hover {
    background: #357ABD;
    transform: translateY(-2px);
}

.testimonials-section {
    padding: 80px 20px;
    background: #fff;
}

.section-title-centered {
    text-align: center;
    font-size: 36px;
    color: #2C3E50;
    margin-bottom: 50px;
}

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

.testimonial-card {
    background: #F7F9FC;
    border-radius: 12px;
    padding: 35px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    border-left: 4px solid #4A90E2;
}

.testimonial-text {
    font-style: italic;
    color: #5A6C7D;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 16px;
}

.testimonial-author strong {
    display: block;
    color: #2C3E50;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #7F8C8D;
    font-size: 14px;
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.form-intro h2 {
    font-size: 32px;
    color: #2C3E50;
    margin-bottom: 15px;
}

.form-intro p {
    color: #7F8C8D;
    line-height: 1.7;
}

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

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

.form-group {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: #2C3E50;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #E0E6ED;
    border-radius: 6px;
    font-size: 15px;
    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: #4A90E2;
}

.btn-submit {
    padding: 16px;
    background: #4A90E2;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.faq-section {
    padding: 80px 20px;
    background: #fff;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    color: #2C3E50;
    margin-bottom: 50px;
}

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

.faq-item {
    background: #F7F9FC;
    border-radius: 12px;
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 550px;
}

.faq-item h3 {
    font-size: 20px;
    color: #2C3E50;
    margin-bottom: 15px;
}

.faq-item p {
    color: #5A6C7D;
    line-height: 1.7;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2C3E50;
    padding: 15px;
    z-index: 900;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

.sticky-content span {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.btn-sticky {
    padding: 12px 28px;
    background: #50E3C2;
    color: #2C3E50;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.main-footer {
    background: #2C3E50;
    color: #fff;
    padding: 60px 20px 30px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #50E3C2;
}

.footer-col p {
    color: #BDC3C7;
    line-height: 1.7;
    font-size: 14px;
}

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

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

.footer-col ul li a {
    color: #BDC3C7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #50E3C2;
}

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

.disclaimer {
    color: #95A5A6;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    color: #BDC3C7;
    font-size: 14px;
}

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

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.services-intro {
    padding: 60px 20px;
    background: #fff;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 32px;
    color: #2C3E50;
    margin-bottom: 25px;
}

.intro-content p {
    color: #5A6C7D;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
}

.all-programs {
    padding: 60px 20px;
    background: #F7F9FC;
}

.programs-detailed {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.program-detail-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.program-detail-card.highlighted {
    border: 3px solid #4A90E2;
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.level-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #ECF0F1;
    color: #7F8C8D;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
}

.level-badge.popular {
    background: #FFF4E6;
    color: #F5A623;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #4A90E2;
}

.program-body h4 {
    font-size: 20px;
    color: #2C3E50;
    margin-top: 25px;
    margin-bottom: 15px;
}

.program-intro {
    color: #5A6C7D;
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 25px;
}

.skills-list {
    list-style: none;
    margin-bottom: 25px;
}

.skills-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #5A6C7D;
    line-height: 1.6;
}

.skills-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4A90E2;
    font-weight: 700;
}

.btn-enroll {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: #4A90E2;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-enroll:hover {
    background: #357ABD;
    transform: translateY(-2px);
}

.comparison-section {
    padding: 60px 20px;
    background: #fff;
}

.comparison-section h2 {
    text-align: center;
    font-size: 32px;
    color: #2C3E50;
    margin-bottom: 40px;
}

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
    background: #4A90E2;
    color: #fff;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #E0E6ED;
}

.comparison-table th {
    font-weight: 600;
    font-size: 14px;
}

.comparison-table td {
    color: #5A6C7D;
}

.comparison-table tbody tr:hover {
    background: #F7F9FC;
}

.cta-section {
    padding: 80px 20px;
    background: #F7F9FC;
}

.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.btn-cta-large {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.story-section {
    padding: 80px 20px;
    background: #fff;
}

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

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text h2 {
    font-size: 36px;
    color: #2C3E50;
    margin-bottom: 30px;
}

.story-text p {
    color: #5A6C7D;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.mission-section {
    padding: 60px 20px;
    background: #F7F9FC;
}

.mission-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    flex: 1;
    min-width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.mission-card h3 {
    font-size: 24px;
    color: #4A90E2;
    margin-bottom: 20px;
}

.mission-card p {
    color: #5A6C7D;
    line-height: 1.8;
}

.values-list {
    list-style: none;
}

.values-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #5A6C7D;
}

.values-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #50E3C2;
    font-weight: 700;
    font-size: 18px;
}

.team-section {
    padding: 80px 20px;
    background: #fff;
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    color: #2C3E50;
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #5A6C7D;
    line-height: 1.7;
}

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

.team-member {
    background: #F7F9FC;
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    flex: 1;
    min-width: 260px;
    max-width: 280px;
}

.member-avatar {
    margin-bottom: 20px;
}

.team-member h4 {
    font-size: 20px;
    color: #2C3E50;
    margin-bottom: 8px;
}

.member-role {
    font-size: 14px;
    color: #4A90E2;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.member-bio {
    color: #7F8C8D;
    line-height: 1.6;
    font-size: 14px;
}

.approach-section {
    padding: 80px 20px;
    background: #F7F9FC;
}

.approach-section h2 {
    text-align: center;
    font-size: 36px;
    color: #2C3E50;
    margin-bottom: 60px;
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-item {
    display: flex;
    gap: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.approach-number {
    font-size: 36px;
    font-weight: 700;
    color: #4A90E2;
    flex-shrink: 0;
}

.approach-text h3 {
    font-size: 22px;
    color: #2C3E50;
    margin-bottom: 12px;
}

.approach-text p {
    color: #5A6C7D;
    line-height: 1.7;
}

.stats-section {
    padding: 80px 20px;
    background: #fff;
}

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

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    flex: 1;
    min-width: 240px;
    max-width: 280px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.95;
}

.business-model-section {
    padding: 60px 20px;
    background: #F7F9FC;
}

.business-model-section h2 {
    text-align: center;
    font-size: 32px;
    color: #2C3E50;
    margin-bottom: 30px;
}

.business-intro {
    max-width: 800px;
    margin: 0 auto 20px;
    color: #5A6C7D;
    line-height: 1.8;
    text-align: center;
}

.business-model-section p {
    max-width: 800px;
    margin: 0 auto 20px;
    color: #5A6C7D;
    line-height: 1.8;
    text-align: center;
}

.contact-section {
    padding: 60px 20px;
    background: #fff;
}

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

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

.contact-info h2 {
    font-size: 32px;
    color: #2C3E50;
    margin-bottom: 20px;
}

.contact-info > p {
    color: #5A6C7D;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: 18px;
    color: #2C3E50;
    margin-bottom: 8px;
}

.contact-detail p {
    color: #7F8C8D;
    margin: 3px 0;
}

.contact-note {
    background: #FFF4E6;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #F5A623;
}

.contact-note h4 {
    font-size: 18px;
    color: #2C3E50;
    margin-bottom: 10px;
}

.contact-note p {
    color: #5A6C7D;
    line-height: 1.7;
    font-size: 14px;
}

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

.contact-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.map-section {
    padding: 60px 20px;
    background: #F7F9FC;
}

.map-section h2 {
    text-align: center;
    font-size: 32px;
    color: #2C3E50;
    margin-bottom: 40px;
}

.map-placeholder {
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-contact-section {
    padding: 60px 20px;
    background: #fff;
}

.faq-contact-section h2 {
    text-align: center;
    font-size: 32px;
    color: #2C3E50;
    margin-bottom: 15px;
}

.faq-intro {
    text-align: center;
    color: #7F8C8D;
    margin-bottom: 40px;
}

.faq-simple {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-simple-item {
    background: #F7F9FC;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #4A90E2;
}

.faq-simple-item h4 {
    font-size: 18px;
    color: #2C3E50;
    margin-bottom: 10px;
}

.faq-simple-item p {
    color: #5A6C7D;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 20px;
    background: #F7F9FC;
    min-height: 70vh;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    color: #2C3E50;
    margin-bottom: 25px;
}

.thanks-message {
    font-size: 18px;
    color: #5A6C7D;
    line-height: 1.8;
    margin-bottom: 40px;
}

.selected-service-info {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.selected-service-info h3 {
    font-size: 20px;
    color: #2C3E50;
    margin-bottom: 10px;
}

.selected-service-info p {
    font-size: 24px;
    color: #4A90E2;
    font-weight: 600;
}

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

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

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

.step-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-card h4 {
    font-size: 20px;
    color: #2C3E50;
    margin-bottom: 12px;
}

.step-card p {
    color: #7F8C8D;
    line-height: 1.6;
    font-size: 14px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.btn-primary {
    background: #4A90E2;
    color: #fff;
}

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

.btn-secondary {
    background: #fff;
    color: #4A90E2;
    border: 2px solid #4A90E2;
}

.btn-secondary:hover {
    background: #4A90E2;
    color: #fff;
}

.contact-reminder {
    background: #FFF4E6;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #F5A623;
    text-align: left;
}

.contact-reminder p {
    color: #5A6C7D;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-content {
    padding: 60px 20px;
    background: #fff;
}

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

.legal-text h2 {
    font-size: 28px;
    color: #2C3E50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text h3 {
    font-size: 22px;
    color: #2C3E50;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-text p {
    color: #5A6C7D;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-text ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-text ul li {
    color: #5A6C7D;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-text a {
    color: #4A90E2;
    text-decoration: none;
}

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

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.gdpr-table thead,
.cookies-table thead {
    background: #4A90E2;
    color: #fff;
}

.gdpr-table th,
.gdpr-table td,
.cookies-table th,
.cookies-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #E0E6ED;
}

.gdpr-table th,
.cookies-table th {
    font-weight: 600;
    font-size: 14px;
}

.gdpr-table td,
.cookies-table td {
    color: #5A6C7D;
    font-size: 14px;
}

.update-info {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #E0E6ED;
    color: #7F8C8D;
    font-size: 14px;
    font-style: italic;
}

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

    .hamburger {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .section-header-centered h2,
    .section-header-left h2 {
        font-size: 28px;
    }

    .program-card,
    .testimonial-card {
        max-width: 100%;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

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

    .sticky-cta {
        padding: 12px;
    }

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

    .thanks-content h1 {
        font-size: 32px;
    }

    .comparison-table {
        font-size: 13px;
    }

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

    .approach-item {
        flex-direction: column;
        gap: 15px;
    }
}