/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1C1B1B 0%, #212020 100%);
    border-top: 2px solid #EF6C4C;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text h3 {
    color: #EF6C4C;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cookie-text p {
    color: #C1C1C1;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-link {
    color: #EF6C4C;
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        justify-content: center;
    }
    
    .cookie-banner {
        padding: 16px;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #1C1B1B;
    color: #C1C1C1;
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 60px;
    font-weight: 500;
    line-height: 72px;
}

h2 {
    font-size: 52px;
    font-weight: 500;
    line-height: 62px;
}

h3 {
    font-size: 40px;
    font-weight: 500;
    line-height: 52px;
}

h4 {
    font-size: 36px;
    font-weight: 400;
    line-height: 48px;
}

h5 {
    font-size: 26px;
    font-weight: 400;
    line-height: 34px;
}

h6 {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
}

p {
    margin-bottom: 1rem;
    color: #C1C1C1;
}

a {
    color: #EF6C4C;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FFFFFF;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.5;
}

.btn-primary {
    background-color: #EF6C4C;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #E55A3A;
    color: #FFFFFF;
}

.btn-secondary {
    background-color: #212020;
    color: #C1C1C1;
    border: 1px solid #555555;
}

.btn-secondary:hover {
    background-color: #555555;
    color: #FFFFFF;
}

.btn-outline {
    background-color: transparent;
    color: #EF6C4C;
    border: 1px solid #EF6C4C;
}

.btn-outline:hover {
    background-color: #EF6C4C;
    color: #FFFFFF;
}

/* Header */
.header {
    background-color: #1C1B1B;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #212020;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: #C1C1C1;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #EF6C4C;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: #C1C1C1;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: #1C1B1B;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 60px;
    font-weight: 500;
    line-height: 72px;
    color: #FFFFFF;
    margin-bottom: 32px;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.hero-feature-text {
    color: #C1C1C1;
    font-size: 14px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* Featured Courses Section */
.featured-courses {
    padding: 80px 0;
    background-color: #212020;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    color: #EF6C4C;
    font-size: 52px;
    font-weight: 500;
    line-height: 62px;
    margin-bottom: 24px;
}

.section-description {
    font-size: 20px;
    color: #C1C1C1;
    max-width: 800px;
    margin: 0 auto;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.course-card {
    background-color: #1C1B1B;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-4px);
}

.course-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-content {
    padding: 24px;
}

.course-details {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.course-duration,
.course-level,
.course-format {
    font-size: 12px;
    color: #C1C1C1;
    background-color: #212020;
    padding: 4px 8px;
    border-radius: 4px;
}

.course-title {
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.course-description {
    color: #C1C1C1;
    margin-bottom: 16px;
}

.course-link {
    color: #EF6C4C;
    font-weight: 500;
    text-decoration: none;
}

.course-link:hover {
    color: #FFFFFF;
}

.courses-actions {
    text-align: center;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: #1C1B1B;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
}

.feature-image {
    margin-bottom: 24px;
}

.feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.feature-title {
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.feature-description {
    color: #C1C1C1;
    line-height: 1.6;
}

/* Creative Vision Section */
.creative-vision {
    padding: 80px 0;
    background-color: #212020;
}

.vision-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vision-before,
.vision-after {
    background-color: #1C1B1B;
    padding: 40px;
    border-radius: 12px;
}

.vision-title {
    font-size: 24px;
    font-weight: 500;
    color: #EF6C4C;
    margin-bottom: 24px;
}

.vision-list {
    list-style: none;
}

.vision-list li {
    color: #C1C1C1;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.vision-list li::before {
    content: "•";
    color: #EF6C4C;
    position: absolute;
    left: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #1C1B1B;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background-color: #212020;
    padding: 32px;
    border-radius: 12px;
}

.testimonial-text {
    color: #C1C1C1;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #212020;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #555555;
    padding: 24px 0;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #EF6C4C;
}

.faq-number {
    color: #EF6C4C;
    font-weight: 500;
    margin-right: 16px;
}

.faq-title {
    flex: 1;
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
}

.faq-icon {
    color: #EF6C4C;
    font-size: 24px;
    font-weight: 300;
}

.faq-answer {
    margin-top: 16px;
    color: #C1C1C1;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #1C1B1B;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.contact-img:first-child {
    grid-column: 1 / -1;
    height: 300px;
}

.contact-form-section {
    background-color: #212020;
    padding: 40px;
    border-radius: 12px;
}

.form-title {
    font-size: 32px;
    font-weight: 500;
    color: #EF6C4C;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    color: #FFFFFF;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    background-color: #1C1B1B;
    border: 1px solid #555555;
    border-radius: 8px;
    padding: 12px 16px;
    color: #FFFFFF;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #EF6C4C;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: #C1C1C1;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #555555;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #EF6C4C;
    border-color: #EF6C4C;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
}

.privacy-link {
    color: #EF6C4C;
    text-decoration: underline;
}

/* Page Header */
.page-header {
    padding: 60px 0;
    background-color: #212020;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 500;
    color: #EF6C4C;
    margin-bottom: 16px;
}

.page-description {
    font-size: 20px;
    color: #C1C1C1;
    max-width: 600px;
    margin: 0 auto;
}

/* Course Hero */
.course-hero {
    padding: 60px 0;
    background-color: #1C1B1B;
}

.course-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.course-hero-title {
    font-size: 48px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.course-hero-details {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.course-detail {
    font-size: 14px;
    color: #C1C1C1;
    background-color: #212020;
    padding: 6px 12px;
    border-radius: 6px;
}

.course-hero-description {
    font-size: 18px;
    color: #C1C1C1;
    line-height: 1.6;
    margin-bottom: 32px;
}

.course-hero-image {
    position: relative;
}

.course-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* Course Content */
.course-content {
    padding: 80px 0;
    background-color: #212020;
}

.course-description {
    margin-bottom: 60px;
}

.course-description h2 {
    font-size: 36px;
    font-weight: 500;
    color: #EF6C4C;
    margin-bottom: 24px;
}

.course-description h3 {
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.course-description ul {
    list-style: none;
    margin-bottom: 24px;
}

.course-description li {
    color: #C1C1C1;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.course-description li::before {
    content: "•";
    color: #EF6C4C;
    position: absolute;
    left: 0;
}

.course-modules {
    margin-bottom: 60px;
}

.course-modules h2 {
    font-size: 36px;
    font-weight: 500;
    color: #EF6C4C;
    margin-bottom: 40px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.module-card {
    background-color: #1C1B1B;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #EF6C4C;
}

.module-title {
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.module-description {
    color: #C1C1C1;
    line-height: 1.6;
}

.course-benefits {
    margin-bottom: 60px;
}

.course-benefits h2 {
    font-size: 36px;
    font-weight: 500;
    color: #EF6C4C;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit-item {
    text-align: center;
}

.benefit-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
}

.benefit-item h3 {
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.benefit-item p {
    color: #C1C1C1;
    line-height: 1.6;
}

/* Course CTA */
.course-cta {
    padding: 80px 0;
    background-color: #1C1B1B;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 500;
    color: #EF6C4C;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    color: #C1C1C1;
    margin-bottom: 32px;
}

/* About Content */
.about-content {
    padding: 80px 0;
    background-color: #212020;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-title {
    font-size: 36px;
    font-weight: 500;
    color: #EF6C4C;
    margin-bottom: 24px;
}

.about-description {
    font-size: 18px;
    color: #C1C1C1;
    line-height: 1.6;
    margin-bottom: 32px;
}

.about-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.about-list {
    list-style: none;
    margin-bottom: 24px;
}

.about-list li {
    color: #C1C1C1;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.about-list li::before {
    content: "•";
    color: #EF6C4C;
    position: absolute;
    left: 0;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.about-values {
    margin-bottom: 80px;
}

.values-title {
    font-size: 36px;
    font-weight: 500;
    color: #EF6C4C;
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.value-card {
    text-align: center;
}

.value-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
}

.value-title {
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.value-description {
    color: #C1C1C1;
    line-height: 1.6;
}

.about-contact {
    text-align: center;
    background-color: #1C1B1B;
    padding: 60px;
    border-radius: 12px;
}

.contact-title {
    font-size: 36px;
    font-weight: 500;
    color: #EF6C4C;
    margin-bottom: 16px;
}

.contact-description {
    font-size: 18px;
    color: #C1C1C1;
    margin-bottom: 32px;
}

.contact-info {
    margin-bottom: 32px;
}

.contact-item {
    color: #C1C1C1;
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-item strong {
    color: #FFFFFF;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #212020;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    background-color: #1C1B1B;
    padding: 40px;
    border-radius: 12px;
}

.contact-title {
    font-size: 32px;
    font-weight: 500;
    color: #EF6C4C;
    margin-bottom: 32px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item-title {
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.contact-item-text {
    color: #C1C1C1;
    font-size: 16px;
}

.contact-image {
    margin-top: 40px;
}

.contact-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.contact-form-section {
    background-color: #1C1B1B;
    padding: 40px;
    border-radius: 12px;
}

.form-title {
    font-size: 32px;
    font-weight: 500;
    color: #EF6C4C;
    margin-bottom: 32px;
}

/* Thank You Section */
.thank-you-section {
    padding: 120px 0;
    background-color: #1C1B1B;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 32px;
}

.success-img {
    width: 80px;
    height: 80px;
}

.thank-you-title {
    font-size: 48px;
    font-weight: 500;
    color: #EF6C4C;
    margin-bottom: 24px;
}

.thank-you-description {
    font-size: 20px;
    color: #C1C1C1;
    margin-bottom: 40px;
    line-height: 1.6;
}

.thank-you-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Privacy and Terms Content */
.privacy-content,
.terms-content {
    padding: 80px 0;
    background-color: #212020;
}

.privacy-text,
.terms-text {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-text h2,
.terms-text h2 {
    font-size: 32px;
    font-weight: 500;
    color: #EF6C4C;
    margin-bottom: 24px;
    margin-top: 40px;
}

.privacy-text h2:first-child,
.terms-text h2:first-child {
    margin-top: 0;
}

.privacy-text p,
.terms-text p {
    color: #C1C1C1;
    margin-bottom: 16px;
    line-height: 1.6;
}

.privacy-text ul,
.terms-text ul {
    list-style: none;
    margin-bottom: 24px;
}

.privacy-text li,
.terms-text li {
    color: #C1C1C1;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.privacy-text li::before,
.terms-text li::before {
    content: "•";
    color: #EF6C4C;
    position: absolute;
    left: 0;
}

.privacy-text strong,
.terms-text strong {
    color: #FFFFFF;
}

/* Footer */
.footer {
    background-color: #EF6C4C;
    padding: 40px 0;
    color: #FFFFFF;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
}

.footer-powered {
    color: #FFFFFF;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-sitemap {
    margin: 0;
}

.footer-sitemap .footer-link {
    color: #FFFFFF;
    font-size: 12px;
    text-decoration: underline;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-sitemap .footer-link:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 40px;
        line-height: 48px;
    }
    
    h2 {
        font-size: 36px;
        line-height: 44px;
    }
    
    h3 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 40px;
        line-height: 48px;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-comparison {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-images {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .course-hero-content {
        grid-template-columns: 1fr;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .page-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .course-hero-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .course-details {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .faq-question {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .faq-number {
        margin-right: 0;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .section-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .page-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .course-hero-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .hero-features {
        gap: 16px;
    }
    
    .hero-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .course-card {
        margin-bottom: 20px;
    }
    
    .feature-card {
        margin-bottom: 40px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .contact-form-section {
        padding: 24px;
    }
    
    .about-contact {
        padding: 40px 20px;
    }
}
