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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --bg-dark: #34495e;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--secondary-color);
}

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

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

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

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
}

.cookie-content a {
    color: var(--bg-white);
    text-decoration: underline;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.btn-cookie:hover {
    background: #229954;
}

.btn-cookie-alt {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.nav-floating {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.brand {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.brand a {
    color: var(--primary-color);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: var(--bg-white);
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    transition: left 0.3s ease;
}

.nav-menu.active {
    left: 0;
}

.nav-menu li {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.nav-menu a {
    color: var(--text-dark);
    font-size: 18px;
    display: block;
    padding: 10px 0;
}

.nav-menu a.active {
    color: var(--secondary-color);
    font-weight: bold;
}

.nav-cta {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
}

.nav-cta:hover {
    background: #c0392b;
    color: var(--bg-white);
}

.hero-immersive {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(231, 76, 60, 0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--bg-white);
    padding: 20px;
    max-width: 800px;
}

.hero-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.4;
}

.btn-hero {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

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

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 500;
}

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

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

.split-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.split-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.problem-list li {
    padding: 15px 0 15px 30px;
    position: relative;
    font-size: 18px;
    color: var(--text-dark);
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 20px;
}

.emphasis-text {
    font-size: 22px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-top: 30px;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

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

.section-title {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.insight-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.insight-icon {
    font-size: 48px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 15px;
}

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

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

.cta-inline {
    padding: 60px 0;
    background: var(--bg-dark);
}

.cta-box {
    background: var(--primary-color);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    color: var(--bg-white);
}

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

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

.btn-secondary {
    display: inline-block;
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 12px 35px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--bg-light);
    transform: scale(1.05);
}

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

.method-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

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

.timeline-marker {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 24px;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

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

.testimonial-quote {
    font-size: 22px;
    font-style: italic;
    line-height: 1.8;
    padding: 40px;
    background: var(--bg-white);
    border-left: 5px solid var(--secondary-color);
    border-radius: 8px;
}

.testimonial-quote cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 16px;
}

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

.benefits-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

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

.benefit-content {
    padding: 25px;
}

.benefit-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

.instructor-profile {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
}

.instructor-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
}

.instructor-bio h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.instructor-title {
    font-size: 18px;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.instructor-bio p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-light);
}

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

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

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

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

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

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

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

.section-intro {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-light);
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.pricing-featured {
    border: 3px solid var(--secondary-color);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.pricing-header {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 30px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.pricing-subtitle {
    font-size: 16px;
    opacity: 0.9;
}

.pricing-body {
    padding: 30px;
}

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

.pricing-features li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    border-bottom: 1px solid var(--bg-light);
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

.pricing-details {
    margin: 25px 0;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 5px;
}

.pricing-details h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.pricing-details ul {
    list-style: none;
}

.pricing-details li {
    padding: 8px 0 8px 20px;
    position: relative;
    font-size: 15px;
    color: var(--text-light);
}

.pricing-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.pricing-price {
    text-align: center;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 2px solid var(--bg-light);
    border-bottom: 2px solid var(--bg-light);
}

.price-amount {
    display: block;
    font-size: 42px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.price-period {
    display: block;
    font-size: 14px;
    color: var(--text-light);
}

.btn-pricing {
    width: 100%;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: #2980b9;
    transform: scale(1.02);
}

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

.urgency-box {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

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

.urgency-box p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.urgency-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.indicator-label {
    color: var(--text-light);
}

.indicator-value {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 24px;
}

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

.guarantee-text {
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.guarantee-subtext {
    font-size: 16px;
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

.guarantee-list {
    list-style: none;
    max-width: 700px;
    margin: 30px auto;
}

.guarantee-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 18px;
    border-bottom: 1px solid var(--border-color);
}

.guarantee-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 22px;
}

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

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

.faq-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
}

.faq-question {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-answer {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.final-cta-box {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
}

.final-cta-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.final-cta-box > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-light);
    text-align: center;
}

.enrollment-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.btn-submit {
    width: 100%;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.sticky-cta.active {
    display: block;
}

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

.sticky-cta-text {
    color: var(--bg-white);
    font-size: 18px;
    font-weight: bold;
}

.btn-sticky {
    background: var(--bg-white);
    color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: var(--bg-light);
    transform: scale(1.05);
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--bg-white);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--bg-white);
}

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

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-white);
    padding: 80px 0 60px;
    text-align: center;
}

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

.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

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

.about-story h2,
.about-approach h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

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

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

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

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

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

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

.team-profile {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-top: 40px;
}

.team-profile img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
}

.team-bio {
    text-align: center;
}

.team-bio h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.team-role {
    font-size: 18px;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.team-bio p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-light);
}

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

.numbers-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.number-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.number-value {
    font-size: 48px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.number-label {
    font-size: 18px;
    color: var(--text-dark);
}

.approach-list {
    list-style: none;
    margin: 30px 0;
}

.approach-list li {
    padding: 15px 0;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.approach-list strong {
    color: var(--primary-color);
}

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

.btn-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

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

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

.comparison-table {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
}

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

.comparison-table th {
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: bold;
}

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

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

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.contact-note {
    font-size: 14px;
    color: var(--success-color);
    font-style: italic;
    margin-top: 5px;
}

.contact-faq h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.faq-contact-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
}

.faq-contact-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

.map-placeholder {
    background: var(--bg-white);
    padding: 60px;
    border-radius: 8px;
    text-align: center;
    border: 2px dashed var(--border-color);
}

.map-placeholder p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.map-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.thanks-hero {
    background: linear-gradient(135deg, var(--success-color), var(--accent-color));
    color: var(--bg-white);
    padding: 100px 0;
}

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

.thanks-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.thanks-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.thanks-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

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

.thanks-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.thanks-box h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

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

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

.step-number {
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

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

.info-boxes {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-box {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

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

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

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

.social-links {
    text-align: center;
    margin-top: 30px;
}

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

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

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

.legal-update {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 30px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.legal-page ul {
    margin: 20px 0 20px 30px;
}

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

.cookie-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    font-size: 14px;
}

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

.cookie-table th {
    background: var(--bg-light);
    font-weight: bold;
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 48px;
    }

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

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

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        padding: 0;
        gap: 30px;
        background: transparent;
    }

    .nav-menu li {
        border-bottom: none;
        padding-bottom: 0;
    }

    .nav-menu a {
        font-size: 16px;
        padding: 0;
    }

    .split-layout {
        flex-direction: row;
        align-items: center;
    }

    .split-content,
    .split-image {
        flex: 1;
    }

    .insight-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .insight-card {
        flex: 0 0 calc(50% - 15px);
    }

    .benefits-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-card {
        flex: 0 0 calc(50% - 20px);
    }

    .instructor-profile {
        flex-direction: row;
        align-items: flex-start;
    }

    .instructor-image {
        flex-shrink: 0;
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 12.5px);
    }

    .pricing-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .pricing-card {
        flex: 0 0 calc(50% - 15px);
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 0 0 calc(50% - 15px);
    }

    .team-profile {
        flex-direction: row;
    }

    .team-bio {
        text-align: left;
    }

    .numbers-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .number-card {
        flex: 0 0 calc(50% - 15px);
    }

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

    .contact-info,
    .contact-faq {
        flex: 1;
    }

    .info-boxes {
        flex-direction: row;
    }

    .info-box {
        flex: 1;
    }

    .footer-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 0 0 calc(25% - 22.5px);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }

    .insight-card {
        flex: 0 0 calc(25% - 22.5px);
    }

    .benefit-card {
        flex: 0 0 calc(33.333% - 27px);
    }

    .testimonial-card {
        flex: 0 0 calc(25% - 19px);
    }

    .pricing-card {
        flex: 0 0 calc(33.333% - 20px);
    }

    .number-card {
        flex: 0 0 calc(25% - 22.5px);
    }
}
