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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0f0f0f;
}

/* Color Variables */
:root {
    --primary-accent: #ffce63;
    --secondary-accent: #bc63ff;
    --background-dark: #0f0f0f;
    --background-secondary: #1a1a1a;
    --background-card: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #666666;
    --border-color: #404040;
    --hover-color: #333333;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 2rem;
    line-height: 1.4;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

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

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

.section {
    padding: 80px 0;
}

/* Header and Navigation */
.header {
    background-color: var(--background-dark);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-accent);
    background-color: var(--background-secondary);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-secondary) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    color: var(--background-dark);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 206, 99, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 206, 99, 0.4);
    color: var(--background-dark);
}

.cta-button.outline {
    background: transparent;
    color: var(--primary-accent);
    border: 2px solid var(--primary-accent);
    box-shadow: none;
}

.cta-button.outline:hover {
    background-color: var(--primary-accent);
    color: var(--background-dark);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--background-secondary), var(--background-dark));
    padding: 150px 0 80px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Cards and Grid Layouts */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.about-grid,
.advantages-grid,
.teachers-grid,
.values-grid,
.benefits-grid,
.reviews-grid,
.tips-grid,
.exercises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Cards */
.about-card,
.teacher-card,
.value-item,
.benefit-item,
.review-card,
.tip-card,
.exercise-card {
    background-color: var(--background-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.about-card:hover,
.teacher-card:hover,
.value-item:hover,
.benefit-item:hover,
.review-card:hover,
.tip-card:hover,
.exercise-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-icon,
.teacher-img,
.value-icon,
.benefit-icon,
.tip-icon,
.exercise-icon {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

/* Advantages Section */
.advantages-section {
    background-color: var(--background-secondary);
}

.advantage-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--background-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-accent);
}

.advantage-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-accent);
    margin-bottom: 1rem;
}

/* Featured Course Section */
.featured-course {
    background: linear-gradient(135deg, var(--background-secondary), var(--background-dark));
}

.course-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.course-details {
    margin: 2rem 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-label {
    color: var(--text-secondary);
}

.detail-value {
    color: var(--text-primary);
    font-weight: 600;
}

.price-section {
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.discounted-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-accent);
}

.discount-badge {
    background-color: var(--secondary-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

/* Achievements Section */
.achievements-section {
    background-color: var(--background-secondary);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.achievement-item {
    padding: 2rem;
}

.achievement-icon {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-accent);
    margin-bottom: 0.5rem;
}

/* Reviews Section */
.reviews-section {
    background-color: var(--background-dark);
}

.stars {
    color: var(--primary-accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.reviewer {
    margin-top: 1rem;
}

.reviewer strong {
    color: var(--text-primary);
}

.reviewer span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Forms */
.subscription-section,
.newsletter-section {
    background: linear-gradient(135deg, var(--background-secondary), var(--background-dark));
}

.subscription-content,
.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.subscription-form,
.newsletter-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--background-card);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-row {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Contact Section */
.contact-info-section {
    background-color: var(--background-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-item {
    padding: 2rem;
}

.contact-icon {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-links a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

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

/* Course Pages */
.course-card {
    background-color: var(--background-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

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

.course-card.featured {
    border-color: var(--primary-accent);
    box-shadow: 0 0 20px rgba(255, 206, 99, 0.2);
}

.course-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
}

.course-image {
    background-color: var(--background-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.course-content {
    padding: 2rem;
    position: relative;
}

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    color: var(--background-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-description {
    color: var(--text-secondary);
    margin: 1rem 0;
}

.course-highlights {
    margin: 2rem 0;
}

.course-highlights h4 {
    color: var(--primary-accent);
    margin-bottom: 1rem;
}

.course-highlights ul {
    list-style: none;
    padding: 0;
}

.course-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.course-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-accent);
    font-weight: bold;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.course-pricing {
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-accent);
}

.discount {
    background-color: var(--secondary-accent);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Tips and Exercises */
.tips-nav {
    background-color: var(--background-secondary);
    padding: 40px 0;
}

.tips-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    background-color: var(--background-card);
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background-color: var(--primary-accent);
    color: var(--background-dark);
    border-color: var(--primary-accent);
}

.tips-section {
    display: none;
}

.tips-section.active {
    display: block;
}

.tip-steps,
.exercise-details {
    margin-top: 1.5rem;
}

.tip-steps h4,
.exercise-details h4 {
    color: var(--primary-accent);
    margin-bottom: 1rem;
}

.tip-steps ul,
.exercise-details ol {
    color: var(--text-secondary);
}

.tip-steps li,
.exercise-details li {
    margin-bottom: 0.5rem;
}

.exercise-time {
    margin-top: 1rem;
    color: var(--secondary-accent);
    font-style: italic;
}

/* Legal Pages */
.legal-content {
    background-color: var(--background-dark);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 4rem;
}

.legal-sidebar {
    background-color: var(--background-card);
    padding: 2rem;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.legal-nav {
    list-style: none;
}

.legal-nav li {
    margin-bottom: 0.5rem;
}

.legal-nav a {
    color: var(--text-secondary);
    display: block;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.legal-nav a:hover {
    background-color: var(--background-secondary);
    color: var(--primary-accent);
}

.legal-main {
    flex: 1;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: var(--primary-accent);
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: var(--secondary-accent);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.contact-details {
    background-color: var(--background-card);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-accent);
    margin: 1rem 0;
}

/* Thank You Page */
.thank-you-section {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--background-dark), var(--background-secondary));
}

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.success-icon {
    height: 80px;
    width: auto;
}

.thank-you-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.thank-you-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.details-card {
    background-color: var(--background-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.details-card h3 {
    color: var(--primary-accent);
    margin-bottom: 1rem;
}

.next-steps ul {
    list-style: none;
    text-align: left;
}

.next-steps li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-accent);
    font-weight: bold;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-card {
    background-color: var(--background-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-accent);
}

.resource-icon {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.resource-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-accent);
    font-weight: 600;
}

/* Contact Page Specific */
.contact-info {
    background-color: var(--background-secondary);
}

.contact-card {
    background-color: var(--background-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-accent);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.forms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.form-container {
    background-color: var(--background-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.corporate-section {
    background-color: var(--background-secondary);
}

.corporate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.corporate-benefits ul {
    list-style: none;
}

.corporate-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.corporate-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-accent);
    font-weight: bold;
}

.corporate-img {
    width: 100%;
    height: auto;
}

.faq-section {
    background-color: var(--background-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: var(--background-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    color: var(--primary-accent);
    margin-bottom: 1rem;
}

.map-section {
    background-color: var(--background-secondary);
}

.map-container {
    text-align: center;
}

.map-placeholder {
    background-color: var(--background-card);
    padding: 4rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.map-icon {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

/* Cookie Management */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--background-card);
    border-top: 2px solid var(--primary-accent);
    padding: 1.5rem;
    z-index: 1001;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.cookie-content p {
    margin: 0;
    color: var(--text-secondary);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept-all {
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    color: var(--background-dark);
}

.cookie-btn.necessary {
    background-color: var(--background-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.cookie-btn.settings {
    background-color: transparent;
    color: var(--primary-accent);
    border: 1px solid var(--primary-accent);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1002;
}

.cookie-modal-content {
    background-color: var(--background-card);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-option {
    margin: 1.5rem 0;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    accent-color: var(--primary-accent);
}

.cookie-option p {
    margin: 0.5rem 0 0 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cookie-controls {
    margin: 2rem 0;
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--background-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--primary-accent);
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
}
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.mission-vision-grid img {
    width: 200px;
}
.mission-card, .vision-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--background-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        border-top: 1px solid var(--border-color);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .course-highlight {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .course-card {
        grid-template-columns: 1fr;
    }
    
    .course-image {
        order: -1;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .legal-sidebar {
        position: static;
    }
    
    .forms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .corporate-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thank-you-details {
        grid-template-columns: 1fr;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .tips-categories {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .category-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .about-grid,
    .advantages-grid,
    .tips-grid,
    .exercises-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid, [class*="-grid"] {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Scroll animations */
.section-header,
.about-card,
.advantage-item,
.review-card,
.tip-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.section-header.animate,
.about-card.animate,
.advantage-item.animate,
.review-card.animate,
.tip-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--primary-accent);
    outline-offset: 2px;
}

button:focus,
.cta-button:focus {
    outline: 2px solid var(--secondary-accent);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-secondary: #ffffff;
        --border-color: #666666;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cta-button {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        page-break-inside: avoid;
    }
}
