/* Global Styles */
:root {
    --primary-color: #1e3a8a;
    --secondary-color: #1e40af;
    --accent-color: #dc2626;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background-color: #ffffff;
    --light-background: #f8fafc;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

.highlight {
    color: var(--danger-color);
    font-weight: 700;
}

/* Header Styles */
header {
    background-color: var(--background-color);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
}

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

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.logo span {
    color: var(--primary-color);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--text-color);
    font-weight: 500;
}

nav a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background-color: var(--primary-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: var(--border-radius);
}

.nav-cta:hover {
    background-color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 100px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.hero-text h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.stars {
    color: var(--accent-color);
}

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

.price-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

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

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

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    transition: var(--transition);
    margin-bottom: 1rem;
}

.cta-button:hover {
    background-color: #e89806;
    color: white;
    transform: translateY(-2px);
}

.countdown-container {
    margin-top: 1rem;
}

.countdown-container p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

#countdown {
    display: flex;
    gap: 15px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 10px;
    border-radius: var(--border-radius);
    min-width: 60px;
}

.countdown-item span:first-child {
    font-size: 1.5rem;
    font-weight: 700;
}

.countdown-label {
    font-size: 0.8rem;
}

/* Value Proposition Section */
.value-proposition {
    background-color: var(--background-color);
    text-align: center;
}

.value-proposition h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

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

.benefit-card {
    background-color: var(--light-background);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Instructor Section */
.instructor {
    background-color: var(--light-background);
}

.instructor-profile {
    display: flex;
    align-items: center;
    gap: 50px;
}

.instructor-image {
    flex: 1;
    max-width: 400px;
}

.instructor-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.instructor-info {
    flex: 1.5;
}

.instructor-info h2 {
    font-size: 2.2rem;
}

.instructor-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.instructor-title {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.instructor-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 1.5rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--background-color);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.credential i {
    color: var(--primary-color);
}

/* Curriculum Section */
.curriculum h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.curriculum-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.module {
    background-color: var(--light-background);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--background-color);
    cursor: pointer;
}

.module-header h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.toggle-icon {
    color: var(--primary-color);
    transition: var(--transition);
}

.module-content {
    padding: 0 20px 20px;
    display: none;
}

.module-content ul {
    margin-top: 1rem;
    padding-left: 20px;
}

.module-content ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 20px;
}

.module-content ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.preview-container {
    background-color: var(--light-background);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.preview-container h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.video-preview {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.video-preview:hover .play-button {
    background-color: var(--primary-color);
}

.secondary-cta {
    display: block;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.secondary-cta:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Audience Section */
.audience {
    background-color: var(--light-background);
    text-align: center;
}

.audience h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.persona-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.persona-card {
    background-color: var(--background-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.persona-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.persona-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    text-align: center;
}

.testimonials h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--light-background);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: left;
}

.testimonial-rating {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 0;
}

/* Offer Section */
.offer {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.offer-content {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.offer-badge {
    position: absolute;
    top: 40px;
    right: -55px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 50px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.9rem;
}

.offer h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.offer-details {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 2rem;
}

.offer-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
}

.offer-pricing .original-price {
    color: rgba(255, 255, 255, 0.7);
}

.offer-pricing .discount-price {
    color: white;
    font-size: 2.5rem;
}

#countdown-offer {
    display: flex;
    gap: 15px;
}

#countdown-offer .countdown-item {
    background-color: rgba(255, 255, 255, 0.2);
}

.coupon-code {
    text-align: center;
    margin-bottom: 2rem;
}

.coupon-code p {
    margin-bottom: 0.5rem;
}

.coupon-code .code {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.offer-features {
    margin-bottom: 2rem;
}

.offer-features h3 {
    margin-bottom: 1rem;
}

.offer-features ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-features li i {
    color: var(--accent-color);
}

.primary-cta {
    display: block;
    background-color: var(--accent-color);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto;
    max-width: 400px;
    transition: var(--transition);
}

.primary-cta:hover {
    background-color: #e89806;
    color: white;
    transform: translateY(-2px);
}

.seats-limited {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    background-color: var(--light-background);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--background-color);
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

/* Guarantee Section */
.guarantee {
    background-color: var(--light-background);
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: var(--background-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.guarantee-icon {
    font-size: 3rem;
    color: var(--success-color);
}

.guarantee-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.guarantee-text p {
    margin-bottom: 0;
}

/* Final CTA Section */
.final-cta {
    text-align: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.final-countdown {
    margin-top: 1.5rem;
}

.final-countdown p {
    font-size: 1rem;
    margin-bottom: 0;
}

#final-timer {
    font-weight: 700;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    min-width: 150px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact .address {
    margin-bottom: 10px;
}

.footer-contact iframe {
    width: 100%;
    border: 0;
    height: 200px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .instructor-profile {
        flex-direction: column;
    }
    
    .curriculum-container {
        grid-template-columns: 1fr;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .value-proposition h2,
    .instructor-info h2,
    .curriculum h2,
    .audience h2,
    .testimonials h2,
    .offer h2,
    .faq h2,
    .final-cta h2 {
        font-size: 1.8rem;
    }
    
    .offer-details {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .countdown-item {
        min-width: 50px;
        padding: 8px;
    }
    
    .countdown-item span:first-child {
        font-size: 1.2rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .benefit-card,
    .persona-card,
    .testimonial-card {
        padding: 20px;
    }
    
    .offer-content {
        padding: 30px 20px;
    }
    
    .primary-cta,
    .secondary-cta {
        padding: 12px;
        font-size: 1rem;
    }
}


.guarantee-text {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.5rem; /* Increased font size */
    text-align: center;
    display: block;
    margin-top: 15px;
}

