/* Success Page Styles */
.success-section {
    padding: 12rem 0 8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-top: 7rem;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.success-content {
    text-align: center;
    max-width: 70rem;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
}

.success-content h1 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.success-message {
    font-size: 1.7rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.success-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 1.2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.success-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.success-info ul {
    list-style: none;
    font-size: 1.4rem;
    line-height: 1.8;
}

.success-info ul li {
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 2.5rem;
}

.success-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
    font-size: 1.6rem;
}

.success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}/* Reset and Base Styles */
html {
    font-size: 1rem;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 1.4rem;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -0.2rem 1rem rgba(0, 0, 0, 0.1);
    padding: 2rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    font-size: 1.4rem;
    color: #666;
    flex: 1;
    min-width: 25rem;
}

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

.btn-accept,
.btn-reject {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #6366f1;
    color: white;
}

.btn-accept:hover {
    background: #5856eb;
}

.btn-reject {
    background: #f3f4f6;
    color: #374151;
}

.btn-reject:hover {
    background: #e5e7eb;
}

/* Header */
.header {
    background: #6366f1;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
}

.nav {
    padding: 1.5rem 0;
}

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

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.4rem;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.4rem;
}

.nav-toggle span {
    width: 2.5rem;
    height: 0.3rem;
    background: white;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: #6366f1;
    color: white;
}

.btn-primary:hover {
    background: #5856eb;
    transform: translateY(-0.2rem);
}

.btn-outline {
    background: transparent;
    color: #6366f1;
    border: 0.2rem solid #6366f1;
}

.btn-outline:hover {
    background: #6366f1;
    color: white;
}

/* Hero Section */
.hero {
    padding: 12rem 0 8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-top: 7rem;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    min-width: 30rem;
}

.hero-text h1 {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    min-width: 30rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: #f8fafc;
}

.features-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.features-text {
    flex: 1;
    min-width: 30rem;
}

.features-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.features-text p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #64748b;
}

.features-image {
    flex: 1;
    min-width: 30rem;
}

.features-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

/* Section Titles */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.section-subtitle {
    font-size: 1.5rem;
    text-align: center;
    color: #64748b;
    margin-bottom: 5rem;
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
}

/* Courses Section */
.courses {
    padding: 8rem 0;
    background: white;
}

.courses-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.course-card {
    background: white;
    border-radius: 1.2rem;
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    min-width: 28rem;
    max-width: 35rem;
}

.course-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.course-image {
    height: 18rem;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-content {
    padding: 2rem;
}

.course-content h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #1e293b;
}

.course-content p {
    font-size: 1.3rem;
    color: #64748b;
    line-height: 1.6;
}

/* Success Stories Section */
.success-stories {
    padding: 8rem 0;
    background: #f8fafc;
}

.stories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.story-card {
    background: white;
    border-radius: 1.2rem;
    padding: 2.5rem;
    flex: 1;
    min-width: 24rem;
    max-width: 28rem;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.5rem;
}

.story-purple::before {
    background: #8b5cf6;
}

.story-red::before {
    background: #ef4444;
}

.story-orange::before {
    background: #f59e0b;
}

.story-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content h4 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.story-content p {
    font-size: 1.3rem;
    color: #feffff;
    line-height: 1.6;
    font-style: italic;
}

/* Materials Section */
.materials {
    padding: 8rem 0;
    background: white;
}

.materials-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.materials-text {
    flex: 1;
    min-width: 30rem;
}

.materials-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.materials-text p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #64748b;
}

.materials-list {
    list-style: none;
    margin-bottom: 3rem;
}

.materials-list li {
    font-size: 1.4rem;
    color: #374151;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 2.5rem;
}

.materials-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
    font-size: 1.8rem;
}

.materials-image {
    flex: 1;
    min-width: 30rem;
}

.materials-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

/* Blog Section */
.blog {
    padding: 8rem 0;
    background: #f8fafc;
}

.blog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    margin-bottom: 5rem;
}

.blog-card {
    background: white;
    border-radius: 1.2rem;
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    min-width: 28rem;
    max-width: 35rem;
}

.blog-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 18rem;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #1e293b;
}

.blog-content p {
    font-size: 1.3rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.4rem;
}

.read-more:hover {
    text-decoration: underline;
}

.blog-more {
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: white;
}

.contact-content {
    max-width: 50rem;
    margin: 0 auto;
}

.contact-text {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.contact-text p {
    font-size: 1.5rem;
    color: #64748b;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.form-group label {
    font-size: 1.3rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.6rem;
}

.form-group input,
.form-group textarea {
    padding: 1.2rem;
    border: 0.2rem solid #e5e7eb;
    border-radius: 0.8rem;
    font-size: 1.4rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
}

.form-group textarea {
    resize: vertical;
    min-height: 10rem;
}

/* Footer */
.footer {
background: linear-gradient(135deg, #7E22CE 0%, #2563EB 100%), #C1BBB7;
    color: white;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 1;
    min-width: 25rem;
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #6366f1;
}

.footer-brand p {
    font-size: 1.3rem;
    color: #94a3b8;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    flex: 2;
}

.footer-column {
    flex: 1;
    min-width: 15rem;
}

.footer-column h4 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #6366f1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 0.1rem solid #334155;
}

.footer-bottom p {
    font-size: 1.3rem;
    color: #94a3b8;
}

/* Success Page Styles */
.success-section {
    padding: 15rem 0 10rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-top: 8rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.success-content {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.success-content h1 {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.success-message {
    font-size: 2rem;
    margin-bottom: 4rem;
    opacity: 0.9;
    line-height: 1.6;
}

.success-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 1.2rem;
    margin-bottom: 4rem;
    text-align: left;
}

.success-info h3 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.success-info ul {
    list-style: none;
    font-size: 1.6rem;
    line-height: 1.8;
}

.success-info ul li {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 3rem;
}

.success-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
    font-size: 1.8rem;
}

.success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 0.9rem;
    }

    .nav-menu {
        position: fixed;
        top: 8rem;
        left: -100%;
        width: 100%;
        height: calc(100vh - 8rem);
        background: #6366f1;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        padding: 4rem 0;
        transition: left 0.3s ease;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(0.5rem, 0.5rem);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(0.7rem, -0.6rem);
    }

    .hero-text h1 {
        font-size: 3.6rem;
    }

    .hero-content,
    .features-content,
    .materials-content {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .courses-grid,
    .stories-grid,
    .blog-grid {
        flex-direction: column;
        align-items: center;
    }

    .course-card,
    .story-card,
    .blog-card {
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .success-content h1 {
        font-size: 3.6rem;
    }

    .success-message {
        font-size: 1.8rem;
    }

    .success-actions {
        flex-direction: column;
        align-items: center;
    }

    .success-actions .btn {
        width: 100%;
        max-width: 30rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 0.8rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 12rem 0 8rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .btn {
        padding: 1.2rem 2.4rem;
        font-size: 1.3rem;
    }

    .course-card,
    .story-card,
    .blog-card {
        min-width: auto;
    }

    .success-content h1 {
        font-size: 3rem;
    }

    .success-info {
        padding: 2rem;
        text-align: center;
    }

    .success-info ul {
        text-align: left;
    }
}