/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Ad Notice */
.ad-notice {
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

/* Navigation */
.main-nav {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-menu a {
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #3498db;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section - Card Based */
.hero-card {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
}

.stat-label {
    font-size: 14px;
    color: #777;
}

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

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

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.cta-button.primary {
    background: #3498db;
    color: #fff;
}

.cta-button.primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52,152,219,0.3);
}

.cta-button.secondary {
    background: #2ecc71;
    color: #fff;
}

.cta-button.secondary:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.cta-button.outline {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.cta-button.outline:hover {
    background: #3498db;
    color: #fff;
}

.cta-link {
    color: #3498db;
    font-weight: 600;
    transition: color 0.3s;
    cursor: pointer;
}

.cta-link:hover {
    color: #2980b9;
}

/* Intro Section */
.intro-section {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.intro-card h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.intro-card p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Method Cards */
.method-cards {
    padding: 80px 0;
}

.section-title {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 50px;
    text-align: left;
}

.section-title.centered {
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.method-card {
    flex: 1;
    min-width: 260px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-icon {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

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

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

.method-card p {
    color: #666;
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.benefit-item {
    margin-bottom: 25px;
}

.benefit-item h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #666;
    line-height: 1.7;
}

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

.benefits-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Testimonials */
.testimonials-cards {
    padding: 80px 0;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #3498db;
}

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

.testimonial-author strong {
    display: block;
    color: #2c3e50;
    font-size: 16px;
    margin-bottom: 5px;
}

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

/* Course Selection */
.course-selection {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.course-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.course-card.featured {
    border: 2px solid #3498db;
}

.course-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #3498db;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.course-header {
    margin-bottom: 20px;
}

.course-header h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.course-level {
    display: inline-block;
    background: #e8f4f8;
    color: #3498db;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
}

.course-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.course-features {
    margin: 25px 0;
    list-style: none;
}

.course-features li {
    padding: 10px 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.course-features li:before {
    content: "✓ ";
    color: #2ecc71;
    font-weight: 700;
    margin-right: 8px;
}

.course-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 25px 0;
}

.select-course-btn {
    width: 100%;
    padding: 15px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-course-btn:hover {
    background: #2980b9;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: #fff;
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.form-intro {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    padding: 16px;
    background: #2ecc71;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #27ae60;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-content {
    text-align: center;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}

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

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Disclaimer */
.disclaimer-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #f39c12;
}

.disclaimer-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.disclaimer-card p {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

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

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

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

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

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: #bdc3c7;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

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

.sticky-cta-btn {
    display: block;
    padding: 15px 30px;
    background: #2ecc71;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(46,204,113,0.4);
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    background: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(46,204,113,0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    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: 20px;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

.cookie-btn.accept {
    background: #2ecc71;
    color: #fff;
}

.cookie-btn.accept:hover {
    background: #27ae60;
}

.cookie-btn.reject {
    background: #95a5a6;
    color: #fff;
}

.cookie-btn.reject:hover {
    background: #7f8c8d;
}

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

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

.page-subtitle {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Story Section */
.story-section {
    padding: 80px 0;
}

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

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

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

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

.story-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
}

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

/* Values Section */
.values-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

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

.team-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.team-photo {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.team-role {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
    font-size: 14px;
}

.team-bio {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

/* Methodology Section */
.methodology-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.methodology-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.method-block {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.method-block h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.method-block p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Stats Showcase */
.stats-showcase {
    padding: 60px 0;
    background: #3498db;
}

.stats-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    color: #fff;
}

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

.stat-card p {
    font-size: 16px;
}

/* CTA About */
.cta-about {
    padding: 80px 0;
}

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

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

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

/* Services Detail */
.services-detail {
    padding: 80px 0;
}

.service-card-detailed {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

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

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

.service-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

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

.service-badge {
    display: inline-block;
    background: #e8f4f8;
    color: #3498db;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.service-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 17px;
}

.service-info h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 25px;
}

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

.service-includes li {
    padding: 10px 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.service-includes li:before {
    content: "✓ ";
    color: #2ecc71;
    font-weight: 700;
    margin-right: 10px;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
}

.select-service-btn {
    padding: 15px 35px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service-btn:hover {
    background: #2980b9;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

.comparison-table thead {
    background: #3498db;
    color: #fff;
}

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

.comparison-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
}

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

/* FAQ */
.faq-section {
    padding: 80px 0;
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 12px;
}

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

/* Register CTA */
.register-cta {
    padding: 80px 0;
}

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

.cta-card-large h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-card-large p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Contact Content */
.contact-content {
    padding: 80px 0;
}

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

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

.contact-info-card h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.info-block p {
    color: #666;
    line-height: 1.7;
}

.info-note {
    font-size: 14px;
    color: #888;
    margin-top: 5px;
}

.hours-table {
    width: 100%;
}

.hours-table td {
    padding: 8px 0;
    color: #666;
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
}

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

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

.quick-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quick-info-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.quick-info-item h4 {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.quick-info-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* Map Section */
.map-section {
    padding: 60px 0;
}

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

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 20px;
}

.map-overlay p {
    margin: 0;
    font-size: 16px;
}

/* Contact FAQ */
.contact-faq {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.faq-contact-item {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.faq-contact-item h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.faq-contact-item p {
    color: #666;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-hero {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

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

.thanks-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.registration-summary {
    margin-bottom: 40px;
}

.selected-service-info {
    background: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.selected-service-info h3 {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.service-name {
    font-size: 20px;
    font-weight: 700;
    color: #3498db;
}

.next-steps-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    text-align: left;
}

.next-steps-card h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

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

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

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-content h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.step-content p {
    color: #666;
    line-height: 1.7;
}

.thanks-cta {
    margin-top: 40px;
}

.thanks-cta h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.thanks-cta p {
    color: #666;
    margin-bottom: 25px;
}

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

.thanks-info {
    padding: 60px 0;
}

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

.info-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.contact-section-alt {
    padding: 60px 0;
    background: #f8f9fa;
}

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

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

.contact-box p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.contact-method {
    text-align: left;
}

.contact-method strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 5px;
}

.contact-method p {
    color: #666;
    margin: 0;
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
}

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

.legal-content h1 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.legal-date {
    color: #888;
    font-size: 14px;
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 26px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content ul li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content strong {
    color: #2c3e50;
}

.legal-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.legal-footer p {
    font-size: 14px;
    color: #888;
}

.cookies-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.cookies-table th {
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
}

.warning-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 6px;
}

.warning-note strong {
    color: #856404;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .hero-stats {
        gap: 20px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .method-card,
    .course-card,
    .value-card,
    .team-card {
        max-width: 100%;
    }

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

    .cta-box,
    .cta-card-large {
        padding: 40px 30px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

    .section-title {
        font-size: 26px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 15px;
    }

    .course-price {
        font-size: 24px;
    }

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

    .thanks-buttons .cta-button {
        width: 100%;
    }
}