/* Global Styles */
:root {
    --color-primary-dark: #602030; /* Dark Maroon/Burgundy */
    --color-primary-light: #B07070; /* Lighter Maroon/Dusty Rose */
    --color-accent-yellow: #FFC300; /* Gold/Yellow */
    --color-text-light: #FFFFFF;
    --color-text-dark: #333333;
    --color-background-light: #FDF8F5; /* Very light off-white for content backgrounds */
    --color-success: #28a745;
    --color-warning: #ffc107;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-background-light);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--color-primary-dark);
}

h1 {
    font-size: clamp(2rem, 6vw, 3.5rem); /* Adjusted for impact */
    font-weight: 900;
    color: var(--color-accent-yellow);
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem); /* Adjusted */
    text-align: center;
    margin-bottom: 2rem; /* Increased margin */
    text-transform: uppercase;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    margin-bottom: 0.75rem; /* Slightly increased spacing */
    padding-left: 1.75em;
    position: relative;
}

ul li::before {
    content: '✓'; /* Checkmark */
    color: var(--color-primary-dark);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1em; /* Slightly larger checkmark */
}

a {
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    background-color: var(--color-primary-dark);
    color: var(--color-text-light);
    padding: 50px 0; /* Increased padding */
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px; /* Adjusted */
}

.logo-icon {
    font-size: 2.8rem; /* Slightly larger */
}

.logo-main-text {
    font-family: var(--font-heading);
    font-size: 1.6rem; /* Adjusted */
    font-weight: 700;
    color: var(--color-accent-yellow);
    display: block;
}
.logo-stars {
    color: var(--color-accent-yellow);
    font-size: 1.6rem; /* Adjusted */
}

.logo-sub-text {
    font-size: 0.95rem; /* Adjusted */
    color: var(--color-text-light);
    display: block;
}

.hero-section .subtitle {
    font-size: clamp(1.1rem, 3.5vw, 1.6rem); /* Adjusted */
    margin-bottom: 1.5rem;
    font-weight: 400; /* Softer subtitle */
}

.hero-cta-text {
    font-size: clamp(1.2rem, 3vw, 1.5rem); /* Adjusted */
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-offer {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    color: var(--color-accent-yellow);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 1rem;
}


.hero-video-content {
    width: 100%;
    max-width: 600px;
}

.professional-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px; /* Space between image and video */
    border-radius: 12px; /* Match video style */
    box-shadow: 0 8px 25px rgba(0,0,0,0.3); /* Match video style */
}

.video-placeholder iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px; /* More rounded */
    box-shadow: 0 8px 25px rgba(0,0,0,0.3); /* Enhanced shadow */
}


/* Features Bar */
.features-bar {
    background-color: var(--color-primary-dark);
    color: var(--color-text-light);
    padding: 35px 0; /* Slightly increased */
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.features-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start; /* Align top for varying text lengths */
    flex-wrap: wrap;
    gap: 25px; /* Increased gap */
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px; /* Increased gap */
    min-width: 130px; /* Increased min-width */
    flex: 1; /* Allow flex grow */
}

.feature-item svg {
    color: var(--color-accent-yellow); /* Accent color for icons */
    width: 36px; /* Slightly smaller */
    height: 36px;
}

.feature-item span {
    font-family: var(--font-heading);
    font-size: 1.05rem; /* Slightly larger */
    font-weight: 700;
}

/* Main Content Area */
.main-content section {
    padding: 50px 0; /* Increased padding */
}

/* Course Details Section */
.course-details-section {
    background-color: var(--color-background-light);
}

.course-details-section h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem); /* Adjusted */
    color: var(--color-text-dark);
    text-transform: none; /* More natural heading */
    margin-bottom: 2.5rem; /* Increased margin */
}

.course-columns {
    display: flex;
    flex-direction: column;
    gap: 35px; /* Increased gap */
    margin-bottom: 2.5rem; /* Increased margin */
}

.course-column h3 {
    font-size: 1.4rem; /* Increased */
    margin-bottom: 1.2rem; /* Increased */
    display: flex;
    align-items: center;
    gap: 10px; /* Increased gap */
    color: var(--color-primary-dark);
}

.course-column h3 .icon {
    font-size: 1.6rem; /* Increased */
}

.course-objective {
    text-align: center;
    font-size: 1.15rem; /* Slightly larger */
    font-style: italic;
    color: var(--color-text-dark);
    max-width: 850px; /* Increased max-width */
    margin-left: auto;
    margin-right: auto;
    padding: 15px;
    background-color: #fff;
    border-left: 5px solid var(--color-primary-dark);
    border-radius: 0 8px 8px 0;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.05);
}

/* Certificate Section */
.certificate-section {
    background-color: var(--color-primary-light);
    color: var(--color-text-light);
}

.certificate-section h2 {
    color: var(--color-text-light);
}

.certificate-content p {
    text-align: center;
    max-width: 750px; /* Increased max-width */
    margin: 0 auto 2.5rem auto; /* Increased margin */
    font-size: 1.1rem; /* Slightly larger */
}

.certificate-image-placeholder {
    text-align: center;
}

.certificate-image-placeholder img {
    max-width: 100%;
    height: auto;
    border-radius: 12px; /* More rounded */
    box-shadow: 0 8px 25px rgba(0,0,0,0.3); /* Enhanced shadow */
}

/* Guarantee Section */
.guarantee-section {
    background-color: var(--color-primary-light);
    color: var(--color-text-light);
}
.guarantee-section h2 {
    color: var(--color-text-light);
}
.highlight-yellow {
    color: var(--color-accent-yellow);
    font-weight: 900; /* Make yellow text bolder */
}

.guarantee-intro {
    text-align: center;
    font-size: 1.15rem; /* Slightly larger */
    margin-bottom: 2.5rem; /* Increased margin */
    line-height: 1.7;
}

.guarantee-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px; /* Increased gap */
}

.guarantee-text-block {
    text-align: center;
    max-width: 450px; /* Increased max-width */
    font-size: 1.05rem; /* Slightly larger */
}

.guarantee-seal-placeholder img {
    max-width: 180px; /* Adjusted if needed */
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Testimonials Section */
.testimonials-section {
    padding: 30px 0;
    margin-bottom: 2rem;
}

.testimonials-section h3 {
    font-size: 1.8rem;
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--color-accent-yellow);
    color: var(--color-text-light);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.testimonial-card .testimonial-author {
    font-weight: bold;
    font-size: 0.9rem;
    color: var(--color-accent-yellow);
}


/* CTA Footer */
.cta-footer {
    background-color: var(--color-primary-dark);
    padding: 50px 0; /* Increased padding */
    text-align: center;
}

.urgency-message {
    color: var(--color-warning);
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

@keyframes pulse-cta {
    0% {
        transform: scale(1);
        box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 195, 0, 0.5); /* Using --color-accent-yellow for glow */
    }
    100% {
        transform: scale(1);
        box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    }
}

.cta-button {
    display: inline-block;
    background-color: var(--color-accent-yellow);
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.5rem); /* Responsive font size */
    font-weight: 900; /* Bolder */
    padding: 18px 40px; /* Increased padding */
    border-radius: 50px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Added box-shadow to transition */
    box-shadow: 0 6px 15px rgba(0,0,0,0.3); /* Enhanced shadow */
    display: inline-flex;
    align-items: center;
    gap: 12px; /* Increased gap */
    animation: pulse-cta 2s infinite ease-in-out; /* Added pulse animation */
}

.cta-button:hover {
    background-color: #FFD954; /* Lighter yellow on hover */
    transform: translateY(-5px) scale(1.02); /* Enhanced hover effect */
    animation-play-state: paused; /* Pause the pulse animation on hover */
    box-shadow: 0 10px 30px rgba(255, 195, 0, 0.6); /* Brighter shadow on hover */
}

.cta-button .button-icon {
    font-size: 1.6rem; /* Adjusted */
}

/* Styles for payment icons (removed from HTML, so these will no longer apply) */
/*
.payment-icons {
    margin-top: 2rem;
}
.payment-icons p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}
.payment-icons img {
    max-width: 100%;
    height: auto;
    max-height: 40px;
    opacity: 0.8;
}
*/


/* Responsive Adjustments */
@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        text-align: left;
        gap: 40px;
    }

    .hero-text-content {
        flex: 1;
    }
    .logo-area {
        justify-content: flex-start;
    }

    .hero-video-content {
        flex: 1;
        max-width: 500px; /* Adjusted to ensure it doesn't get too large with image */
    }
    
    .course-columns {
        flex-direction: row;
        gap: 40px;
    }
    .course-column {
        flex: 1;
    }
    .guarantee-details {
        flex-direction: row;
        justify-content: space-around; /* Better spacing */
        align-items: center;
    }
    .guarantee-text-block {
      flex: 1;
      max-width: 300px; /* Control width on larger screens */
    }
    .guarantee-seal-placeholder {
      order: 0;
      flex-shrink: 0;
    }
    .testimonial-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2.2rem;
    }
    .hero-section h1 {
      font-size: clamp(2rem, 8vw, 3rem);
    }
    .hero-section .subtitle {
      font-size: clamp(1rem, 4vw, 1.3rem);
    }

    .features-container {
        flex-direction: column;
        gap: 30px;
    }
    .feature-item {
        flex-direction: row;
        gap: 15px;
        min-width: auto;
        align-items: center; /* Center items vertically */
    }
    .feature-item svg {
      width: 30px;
      height: 30px;
    }

    .course-details-section h2 {
        font-size: 1.4rem;
    }
}
