
/* Block 1 */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 60px 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f8f9fa;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.125rem;
    color: #e9ecef;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-description-secondary {
    font-size: 1rem;
    color: #dee2e6;
    margin-bottom: 3rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    color: #ffffff;
}

.stat-icon {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.875rem;
    color: #ced4da;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    border: none;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.6);
    color: #ffffff;
    text-decoration: none;
}

.hero-guarantee {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #adb5bd;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-description-secondary {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .btn-primary-hero {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        margin-bottom: 2rem;
    }
    
    .btn-primary-hero {
        width: 100%;
        justify-content: center;
    }
}

/* Block 2 */
.course-modules-section {
padding: 80px 0;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
text-align: center;
margin-bottom: 60px;
}

.section-title {
font-size: 2.75rem;
font-weight: 700;
color: #2c3e50;
margin-bottom: 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.section-subtitle {
font-size: 1.25rem;
color: #6c757d;
max-width: 700px;
margin: 0 auto;
line-height: 1.6;
}

.modules-grid {
margin-bottom: 60px;
}

.module-card {
background: #ffffff;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
height: 100%;
}

.module-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.module-image-wrapper {
position: relative;
height: 200px;
overflow: hidden;
}

.module-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}

.module-card:hover .module-image {
transform: scale(1.1);
}

.module-number {
position: absolute;
top: 15px;
right: 15px;
width: 40px;
height: 40px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 1.1rem;
}

.module-content {
padding: 30px;
}

.module-title {
font-size: 1.5rem;
font-weight: 700;
color: #2c3e50;
margin-bottom: 15px;
}

.module-description {
color: #6c757d;
line-height: 1.6;
margin-bottom: 25px;
font-size: 0.95rem;
}

.module-features {
display: flex;
flex-direction: column;
gap: 12px;
}

.feature-item {
display: flex;
align-items: center;
color: #495057;
font-size: 0.9rem;
}

.feature-item i {
color: #667eea;
margin-right: 10px;
width: 16px;
}

.modules-summary {
background: #ffffff;
border-radius: 20px;
padding: 40px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.summary-title {
font-size: 2rem;
font-weight: 700;
color: #2c3e50;
margin-bottom: 20px;
}

.summary-text {
color: #6c757d;
line-height: 1.6;
margin-bottom: 30px;
font-size: 1.05rem;
}

.summary-stats {
display: flex;
flex-wrap: wrap;
gap: 30px;
margin-bottom: 20px;
}

.summary-stats .stat-item {
display: flex;
align-items: center;
color: #495057;
font-size: 1rem;
}

.summary-stats .stat-item i {
color: #28a745;
margin-right: 10px;
font-size: 1.2rem;
}

.summary-cta {
text-align: center;
}

.btn-module-enroll {
display: inline-block;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 16px 32px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
border: none;
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-module-enroll:hover {
transform: translateY(-2px);
box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
color: white;
text-decoration: none;
}

.cta-guarantee {
margin-top: 15px;
color: #28a745;
font-size: 0.9rem;
font-weight: 500;
}

.cta-guarantee i {
color: #28a745;
}

@media (max-width: 768px) {
.course-modules-section {
padding: 60px 0;
}

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

.modules-summary {
padding: 30px 20px;
}

.summary-stats {
justify-content: center;
}

.summary-cta {
margin-top: 30px;
}
}

/* Block 3 */
.instructor-showcase {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.instructor-showcase::before {
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" fill="none"><path d="M0,50 C200,150 400,0 600,80 C800,160 900,20 1000,100 L1000,200 L0,200 Z" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat center;
    background-size: cover;
    width: 100%;
    height: 200px;
    top: -50px;
    left: 0;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    z-index: 2;
    position: relative;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.instructor-grid {
    margin-bottom: 100px;
    z-index: 2;
    position: relative;
}

.instructor-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

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

.instructor-image-wrapper {
    position: relative;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
}

.instructor-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.instructor-card:hover .instructor-image {
    transform: scale(1.05);
}

.instructor-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.instructor-name {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.instructor-title {
    font-size: 1.1rem;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.instructor-bio {
    font-size: 1rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 16px;
}

.instructor-bio-secondary {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
}

.instructor-achievements {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #007bff;
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
}

.achievement-item i {
    color: #007bff;
    font-size: 1.1rem;
}

.instructor-credentials {
    background: white;
    padding: 60px 0;
    border-radius: 24px;
    margin-bottom: 80px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.credentials-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.credentials-description {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 40px;
}

.credentials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
}

.stat-group {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #007bff;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.credentials-featured {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.featured-publication {
    padding: 24px;
    background: #f8f9fa;
    border-radius: 16px;
    text-align: center;
}

.publication-logo {
    width: 120px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 16px;
}

.publication-text {
    font-size: 0.9rem;
    color: #495057;
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

.instructor-methodology {
    background: white;
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.methodology-header {
    text-align: center;
    margin-bottom: 60px;
}

.methodology-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.methodology-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.methodology-step {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
}

.methodology-step:hover {
    background: #f8f9fa;
    transform: translateY(-4px);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.methodology-step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0,123,255,0.3);
}

.step-icon i {
    color: white;
    font-size: 1.8rem;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.step-description {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .instructor-showcase {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .instructor-card {
        padding: 30px 20px;
    }
    
    .instructor-image {
        height: 250px;
    }
    
    .credentials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .instructor-methodology {
        padding: 40px 20px;
    }
    
    .methodology-title {
        font-size: 1.8rem;
    }
}

/* Block 4 */
.student-success-stories {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.success-story-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.success-story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.success-story-card:hover .story-image {
    transform: scale(1.05);
}

.story-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.story-content {
    padding: 30px;
}

.student-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.student-location {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.story-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    color: #ffd700;
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.story-testimonial {
    font-style: italic;
    color: #444;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
    border-left: 4px solid #667eea;
    padding-left: 20px;
    margin-left: 0;
}

.achievement-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #555;
}

.highlight-item i {
    color: #667eea;
    width: 16px;
    text-align: center;
}

.success-metrics {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 32px;
    color: white;
}

.metrics-header {
    text-align: center;
    margin-bottom: 50px;
}

.metrics-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.metrics-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.metric-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.metric-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.metric-description {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
}

.community-showcase {
    margin-top: 80px;
    padding: 60px 0;
}

.showcase-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 25px;
    line-height: 1.3;
}

.showcase-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.community-features {
    margin-bottom: 35px;
}

.feature-row {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #444;
}

.feature-item i {
    color: #667eea;
    font-size: 1.1rem;
}

.btn-community-join {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-community-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.cta-note {
    margin-top: 12px;
    color: #666;
    font-size: 0.9rem;
}

.showcase-gallery {
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 16px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-credit {
    font-size: 0.9rem;
    font-weight: 500;
}

.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    padding: 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-stats .stat-item {
    text-align: center;
}

.gallery-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #667eea;
    display: block;
}

.gallery-stats .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .feature-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .gallery-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
    
    .metrics-title {
        font-size: 1.8rem;
    }
    
    .showcase-title {
        font-size: 1.8rem;
    }
}

/* Block 5 */
.enrollment-form-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            overflow: hidden;
        }
        
        .enrollment-form-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('images/form-background-pattern.jpg') center/cover;
            opacity: 0.1;
            z-index: 1;
        }
        
        .form-wrapper {
            position: relative;
            z-index: 2;
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 60px;
            color: white;
        }
        
        .form-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        
        .form-subtitle {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
            font-weight: 300;
        }
        
        .form-benefits {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .benefit-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        .benefit-item i {
            color: #4ade80;
            font-size: 1.2rem;
        }
        
        .form-container {
            background: white;
            border-radius: 24px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            backdrop-filter: blur(20px);
        }
        
        .form-content {
            padding: 50px;
        }
        
        .pricing-display {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .price-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
        }
        
        .original-price {
            font-size: 1.5rem;
            color: #9ca3af;
            text-decoration: line-through;
            font-weight: 500;
        }
        
        .current-price {
            font-size: 3rem;
            color: #1f2937;
            font-weight: 700;
        }
        
        .discount-badge {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .pricing-note {
            color: #ef4444;
            font-weight: 600;
            font-size: 1rem;
        }
        
        .form-grid {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .input-group {
            position: relative;
        }
        
        .input-label {
            display: block;
            font-size: 1rem;
            font-weight: 600;
            color: #374151;
            margin-bottom: 8px;
            letter-spacing: 0.3px;
        }
        
        .form-input {
            width: 100%;
            padding: 18px 20px 18px 50px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 1.1rem;
            background: #fafbfc;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .form-input:focus {
            outline: none;
            border-color: #667eea;
            background: white;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
        }
        
        .input-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            font-size: 1.1rem;
            pointer-events: none;
            margin-top: 14px;
        }
        
        .form-input:focus + .input-icon {
            color: #667eea;
        }
        
        .submit-button {
            width: 100%;
            padding: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        
        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }
        
        .submit-button:active {
            transform: translateY(0);
        }
        
        .button-icon {
            transition: transform 0.3s ease;
        }
        
        .submit-button:hover .button-icon {
            transform: translateX(4px);
        }
        
        .form-guarantees {
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .guarantee-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #6b7280;
            font-size: 0.95rem;
            font-weight: 500;
        }
        
        .guarantee-item i {
            color: #10b981;
            font-size: 1rem;
        }
        
        .form-sidebar {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            padding: 50px 40px;
            height: 100%;
        }
        
        .course-preview {
            margin-bottom: 40px;
        }
        
        .preview-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 16px;
            margin-bottom: 25px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .preview-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 25px;
        }
        
        .course-includes {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .include-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .include-item i {
            color: #667eea;
            font-size: 1.3rem;
            margin-top: 2px;
        }
        
        .include-details {
            display: flex;
            flex-direction: column;
        }
        
        .include-title {
            font-weight: 600;
            color: #1f2937;
            font-size: 1rem;
        }
        
        .include-duration {
            font-size: 0.9rem;
            color: #6b7280;
            margin-top: 2px;
        }
        
        .testimonial-highlight {
            background: white;
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }
        
        .testimonial-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 15px;
        }
        
        .testimonial-stars i {
            color: #fbbf24;
            font-size: 1.1rem;
        }
        
        .testimonial-text {
            font-size: 1rem;
            color: #374151;
            line-height: 1.6;
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .author-details {
            display: flex;
            flex-direction: column;
        }
        
        .author-name {
            font-weight: 600;
            color: #1f2937;
            font-size: 0.95rem;
        }
        
        .author-title {
            font-size: 0.85rem;
            color: #6b7280;
        }
        
        .trust-indicators {
            margin-top: 60px;
        }
        
        .trust-row {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
            font-weight: 600;
            font-size: 1rem;
        }
        
        .trust-item i {
            color: #4ade80;
            font-size: 1.2rem;
        }
        
        @media (max-width: 992px) {
            .form-title {
                font-size: 2.5rem;
            }
            
            .form-content,
            .form-sidebar {
                padding: 40px 30px;
            }
            
            .form-benefits {
                gap: 25px;
            }
            
            .trust-row {
                gap: 25px;
            }
        }
        
        @media (max-width: 768px) {
            .enrollment-form-section {
                padding: 60px 0;
            }
            
            .form-title {
                font-size: 2rem;
            }
            
            .form-subtitle {
                font-size: 1.1rem;
            }
            
            .form-benefits {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .current-price {
                font-size: 2.5rem;
            }
            
            .form-content,
            .form-sidebar {
                padding: 30px 20px;
            }
            
            .trust-row {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
        }
