/* Font Face Definitions */
@font-face {
    font-family: 'PingAR';
    src: url('font/PingAR+LT-Hairline.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'PingAR';
    src: url('font/PingAR+LT-Thin.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'PingAR';
    src: url('font/PingAR+LT-ExtraLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'PingAR';
    src: url('font/PingAR+LT-Light.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'PingAR';
    src: url('font/PingAR+LT-Regular.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'PingAR';
    src: url('font/PingAR+LT-Medium.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'PingAR';
    src: url('font/PingAR+LT-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'PingAR';
    src: url('font/PingAR+LT-Heavy.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'PingAR';
    src: url('font/PingAR+LT-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

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

:root {
    --primary-dark: #021b1e;
    --primary-green: #97bf47;
    --primary-cyan: #7cd5e0;
    --primary-gold: #b7a57b;
    --text-dark: #021b1e;
    --text-light: #ffffff;
    --background-light: #f8f9fa;
}

body {
    font-family: 'PingAR', 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'PingAR', 'Cairo', sans-serif;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-cyan) 100%);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-cyan) 100%);
    color: var(--text-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(151, 191, 71, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--text-light);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-green);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Logo Styles */
.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.main-logo {
    max-width: 200px;
    height: auto;
    /* filter: brightness(0) invert(1); */
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
}

/* Manuscript Background Styles */
.manuscript-bg-hero,
.manuscript-bg-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.manuscript-bg-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    opacity: 0.05;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.manuscript-bg-hero .manuscript-bg-svg {
    opacity: 0.08;
    filter: brightness(0) invert(1);
}

/* Manuscript Container Styles */
.manuscript-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.manuscript-svg {
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(120deg);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.manuscript-svg:hover {
    opacity: 1;
    transform: scale(1.02);
}

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

.manuscript-decoration {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.manuscript-decoration-svg {
    width: 120px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.manuscript-decoration-svg:hover {
    opacity: 0.6;
    transform: scale(1.1);
}



/* Hero Section */
.hero-section {
    /* background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-cyan) 100%); */
    background: linear-gradient(135deg, var(--primary-dark) 0%, #091b1e 100%);
     color: var(--text-light);
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;

    
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;

    
}
@media (min-width: 800px) {
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
}

@media (max-width: 799px) {
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}


.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 600;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.8;
    font-weight: 400;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

.hero-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

.feature-item i {
    margin-left: 10px;
    color: #4ade80;
    font-size: 1.2rem;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo-container {
    width: 350px;
    height: 350px;
}

.hero-photo {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    object-position: center;
}

/* Target Audience Section */
.target-audience {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.audience-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.audience-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

.audience-card p {
    color: #666;
    line-height: 1.6;
    font-weight: 400;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

/* About Instructor Section */
.about-instructor {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.instructor-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.instructor-logo {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(151, 191, 71, 0.3);
}

.instructor-logo-img {
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.instructor-info h3 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

.instructor-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 400;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

.achievements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 799px) {
.achievements {
    align-items: center;
    
}
}

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

.achievement i {
    color: #4ade80;
    font-size: 1.2rem;
}

/* Learning Journey Section */
.learning-journey {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.journey-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-cyan) 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-right: 80px;
}

.timeline-number {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(151, 191, 71, 0.3);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.timeline-content h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    font-weight: 400;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 400;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

.pricing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.price-comparison {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.comparison-item {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px dashed #ccc;
}

.old-price {
    display: block;
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 600;
    font-family: 'PingAR', 'Cairo', sans-serif;
    margin-bottom: 0.5rem;
}

.comparison-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

.pricing-card {
    background: white;
    border-radius: 25px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid transparent;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid var(--primary-green);
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(151, 191, 71, 0.25);
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-cyan) 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'PingAR', 'Cairo', sans-serif;
    box-shadow: 0 5px 15px rgba(151, 191, 71, 0.3);
}

.pricing-header h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

.price {
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: 600;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

.amount {
    font-size: 4rem;
    color: var(--primary-dark);
    font-weight: 900;
    font-family: 'PingAR', 'Cairo', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.period {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
    font-weight: 400;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

.price-description {
    color: #666;
    margin-bottom: 2rem;
    font-weight: 400;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

.pricing-features {
    margin-bottom: 2rem;
    text-align: right;
}

.pricing-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

.pricing-features .feature-item i {
    color: var(--primary-green);
    margin-left: 10px;
    font-size: 1.1rem;
}

.pricing-cta {
    margin-top: 2rem;
}

.urgency-text {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-weight: 600;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

.launch-info {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.launch-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-cyan) 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 600px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.launch-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.launch-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

.launch-date {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

.launch-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 400;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    /* background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-cyan) 100%); */
    background: linear-gradient(182deg, #052b30 0%, #021b1e 79%);

    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 500;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-item h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

.contact-item p {
    color: #666;
    font-weight: 400;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'PingAR', 'Cairo', sans-serif;
    font-weight: 400;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
    font-weight: 700;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    font-weight: 400;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

.footer-section ul li a:hover {
    color: var(--primary-green);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
    font-weight: 400;
    font-family: 'PingAR', 'Cairo', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .main-logo {
        max-width: 150px;
    }
    
    .hero-photo-container {
        width: 280px;
        /* height: 280px; */
    }
    
    .manuscript-bg-svg {
        width: 150%;
        height: 150%;
    }
    
    .manuscript-decoration-svg {
        width: 80px;
    }
    
    .price-comparison {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .launch-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .instructor-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .instructor-logo {
        width: 200px;
        height: 200px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-item {
        padding-right: 60px;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .journey-timeline::before {
        right: 25px;
    }
    
    .footer-logo-img {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 50px 0;
    }
    
    .main-logo {
        max-width: 120px;
    }
    
    .hero-photo-container {
        width: 220px;
        height: 220px;
    }
    
    .manuscript-bg-svg {
        width: 180%;
        height: 180%;
    }
    
    .manuscript-decoration-svg {
        width: 60px;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .launch-card {
        padding: 1.5rem;
    }
    
    .launch-date {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .instructor-logo {
        width: 150px;
        height: 150px;
    }
    
    .timeline-item {
        padding-right: 50px;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .journey-timeline::before {
        right: 20px;
    }
    
    .footer-logo-img {
        max-width: 100px;
    }
}

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

.audience-card,
.timeline-item,
.contact-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}
