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

body {
    font-family: 'Roboto', sans-serif; /* Updated from main.css */
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}        .lp-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif; /* Updated from main.css */
    margin-bottom: 0.8em;
    font-weight: 700;
    
}

h1 { font-size: 2.5em; }
h2 { font-size: 2em; }
h3 {
    font-size: 1.5em;
    text-align: center;
}

p {
    margin-bottom: 1em;
}

a {
    text-decoration: none;
    color: var(--secondary); /* Updated brand color */
}

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

.lpButtonContainer {


    max-width: 600px; 
    margin: 20px auto;

}

/* Brand Colors from main.css */
:root {
    --primary: #ffd500;
    --primary-dark: #e6b400;
    --secondary: #ff9a00;
    --accent: #5ce3ba;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f9f9f9;
    --bg-dark: #222222;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --transition: all 0.3s ease;
    
    /* Keeping some from original template if not in main.css or for specific use */
    --brand-blue-dark: #0D47A1; /* Example: if you want to keep a blue */
    --brand-blue-medium: #1976D2;/* Example: if you want to keep a blue */
    --brand-pink: var(--secondary); /* Mapping pink to secondary for consistency */
    --brand-pink-light: #fff5e6; /* Lighter shade of secondary */
    --white: #ffffff;
    --border-color: #e0e0e0;
}        /* Helper Classes */
.lp-text-center { text-align: center; }
.lp-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.lpIcon {

    text-align: center;

}

.lpIcon img {

    max-width: 150px;
    margin: 15px auto 25px auto;

}

.lp-btn-primary {
    background-color: var(--primary);
    color: var(--text-dark); /* Text color for primary buttons */
}
.lp-btn-primary:hover {
    background-color: var(--primary-dark);
}

.lp-btn-secondary {
    background-color: var(--secondary);
    color: var(--text-light);
}
.lp-btn-secondary:hover {
    background-color: #e65400; /* Darker secondary */
}

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

/* Animated Elements - Initial State */
.lp-animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.lp-animate-on-scroll.lp-is-visible {
    opacity: 1;
    transform: translateY(0);
}        /* Hero Section */

.lp-hero-section {

    border-radius: 0;
    background-color: var(--bg-light);
    padding: 20px 0;
    /* text-align: center; Removed for two-column layout */
}
.lp-hero-section .lp-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for responsiveness */
    align-items: flex-start; /* Align items to the top */
    gap: 30px; /* Space between columns */
}
.lp-hero-content {
    flex: 2; /* Takes more space */
    min-width: 300px; /* Minimum width before wrapping */
    text-align: left;
}        

.lp-hero-content .lp-breadcrumbs {
    font-size: 0.9em;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.lp-hero-content .lp-course-main-image {
    width: 100%;
    height: 250px;
    border-radius: 0 30px 0 30px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* Cool White Drop Box Overlay */
.lp-image-overlay-box {

    position: absolute;
    color: black;
    text-align: center;
    top: 10px;
    right: 25px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 0 0 12px 12px;
    padding: 5px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    max-width: 200px;

    
}

.lp-overlay-content {

    font-size: 1.2em;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
    text-align: center;
    color: rgb(216, 90, 5);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 30px;

}


.lp-course-info-box {

    flex: 1; /* Takes less space */
    min-width: 300px; /* Minimum width before wrapping */
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: left;

}



.lp-course-info-box .lp-price {


    color: var(--secondary); /* Updated brand color */
    font-weight: bold;
}

.lp-original-price {

    color: rgb(104, 104, 104) !important;
    text-decoration: line-through;
    color: var(--text-light);
    margin-left: 10px;
}
.lp-course-info-box .lp-price-note {
    font-size: 0.9em;
    color: var(--text-light);
    margin-bottom: 15px;
}
.lp-course-info-box .lp-info-item {
    margin-bottom: 10px;
    font-size: 1.1em;
}
.lp-course-info-box .lp-info-item strong {
    color: var(--text-dark);
}        /* Benefits Section */

.lp-benefits-section {

    border-radius: 0;
    background-color: var(--white);
    padding: 0 !important;
    width: 100%;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;

}

.lp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    text-align: center;
}

/* Responsive breakpoints for benefits grid */
@media (max-width: 1024px) {
    .lp-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {


.lp-hero-section {

    border-radius: 0;
    padding-top: 0;

}

    .lp-benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
.lp-benefit-item {

    background-color: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}
.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition);        }
.lp-benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.lp-benefit-item:hover::before {
    height: 6px;
}
.lp-benefit-item .lp-icon {
    font-size: 3em;
    color: var(--secondary);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}
.lp-benefit-item h4 {
    color: var(--text-dark);
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
}
.lp-benefit-item p {
    color: #666;
    font-size: 1.05em;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Accordion Section */
.lp-accordion-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
}
.lp-accordion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
.lp-accordion-item {
    background-color: var(--white);
    margin-bottom: 15px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.lp-accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* Theme Color Coding */
.theme-biology {
    border-left: 5px solid #4CAF50;
}
.theme-biology.active {
    border-color: #4CAF50;
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.2);
}

.theme-genetics {
    border-left: 5px solid #9C27B0;
}
.theme-genetics.active {
    border-color: #9C27B0;
    box-shadow: 0 12px 35px rgba(156, 39, 176, 0.2);
}

.theme-physiology {
    border-left: 5px solid #E91E63;
}
.theme-physiology.active {
    border-color: #E91E63;
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.2);
}

.theme-ecology {
    border-left: 5px solid #FF9800;
}
.theme-ecology.active {
    border-color: #FF9800;
    box-shadow: 0 12px 35px rgba(255, 152, 0, 0.2);
}

.theme-chemistry {
    border-left: 5px solid #2196F3;
}
.theme-chemistry.active {
    border-color: #2196F3;
    box-shadow: 0 12px 35px rgba(33, 150, 243, 0.2);
}

.theme-practical {
    border-left: 5px solid #607D8B;
}
.theme-practical.active {
    border-color: #607D8B;
    box-shadow: 0 12px 35px rgba(96, 125, 139, 0.2);
}

.lp-accordion-title {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    transition: all 0.3s ease;
    gap: 15px;
}

.lp-accordion-title:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.theme-title {
    font-size: 1.1em;
    font-weight: 700;
    flex: 1;
    min-width: 0;
}

.lesson-count {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 140px;
    max-width: 140px;
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.lp-accordion-title::after {
    content: '+';
    font-size: 1.5em;
    font-weight: 600;
    color: var(--secondary);
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.lp-accordion-item.active .lp-accordion-title::after {
    content: '−';
    color: var(--primary);
}

.lp-accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 249, 255, 0.9));
}

.lp-accordion-item.active .lp-accordion-content {
    padding: 20px 25px 25px 25px;
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary) rgba(0, 0, 0, 0.1);
}

/* Custom scrollbar styling for webkit browsers */
.lp-accordion-item.active .lp-accordion-content::-webkit-scrollbar {
    width: 6px;
}

.lp-accordion-item.active .lp-accordion-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.lp-accordion-item.active .lp-accordion-content::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 3px;
    transition: background 0.3s ease;
}

.lp-accordion-item.active .lp-accordion-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.topic-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.topic-item {
    background: white;
    border-radius: 12px;
    border-left: 3px solid var(--secondary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 8px;
}

/* Topic color coding based on theme */
.topic-item.theme-biology {
    border-left-color: #4CAF50;
}

.topic-item.theme-biology:nth-child(1) {
    border-left-color: #4CAF50;
}
.topic-item.theme-biology:nth-child(1) .topic-lessons {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}
.topic-item.theme-biology:nth-child(1) .lesson-number {
    background: #4CAF50;
    color: white;
}

.topic-item.theme-biology:nth-child(2) {
    border-left-color: #66BB6A;
}
.topic-item.theme-biology:nth-child(2) .topic-lessons {
    background: rgba(102, 187, 106, 0.1);
    color: #66BB6A;
}
.topic-item.theme-biology:nth-child(2) .lesson-number {
    background: #66BB6A;
    color: white;
}

.topic-item.theme-biology:nth-child(3) {
    border-left-color: #81C784;
}
.topic-item.theme-biology:nth-child(3) .topic-lessons {
    background: rgba(129, 199, 132, 0.1);
    color: #81C784;
}
.topic-item.theme-biology:nth-child(3) .lesson-number {
    background: #81C784;
    color: white;
}

.topic-item.theme-biology:nth-child(4) {
    border-left-color: #388E3C;
}
.topic-item.theme-biology:nth-child(4) .topic-lessons {
    background: rgba(56, 142, 60, 0.1);
    color: #388E3C;
}
.topic-item.theme-biology:nth-child(4) .lesson-number {
    background: #388E3C;
    color: white;
}

.topic-item.theme-biology:nth-child(5) {
    border-left-color: #2E7D32;
}
.topic-item.theme-biology:nth-child(5) .topic-lessons {
    background: rgba(46, 125, 50, 0.1);
    color: #2E7D32;
}
.topic-item.theme-biology:nth-child(5) .lesson-number {
    background: #2E7D32;
    color: white;
}

.topic-item.theme-genetics {
    border-left-color: #9C27B0;
}

.topic-item.theme-genetics:nth-child(1) {
    border-left-color: #9C27B0;
}
.topic-item.theme-genetics:nth-child(1) .topic-lessons {
    background: rgba(156, 39, 176, 0.1);
    color: #9C27B0;
}
.topic-item.theme-genetics:nth-child(1) .lesson-number {
    background: #9C27B0;
    color: white;
}

.topic-item.theme-genetics:nth-child(2) {
    border-left-color: #AB47BC;
}
.topic-item.theme-genetics:nth-child(2) .topic-lessons {
    background: rgba(171, 71, 188, 0.1);
    color: #AB47BC;
}
.topic-item.theme-genetics:nth-child(2) .lesson-number {
    background: #AB47BC;
    color: white;
}

.topic-item.theme-genetics:nth-child(3) {
    border-left-color: #BA68C8;
}
.topic-item.theme-genetics:nth-child(3) .topic-lessons {
    background: rgba(186, 104, 200, 0.1);
    color: #BA68C8;
}
.topic-item.theme-genetics:nth-child(3) .lesson-number {
    background: #BA68C8;
    color: white;
}

.topic-item.theme-genetics:nth-child(4) {
    border-left-color: #8E24AA;
}
.topic-item.theme-genetics:nth-child(4) .topic-lessons {
    background: rgba(142, 36, 170, 0.1);
    color: #8E24AA;
}
.topic-item.theme-genetics:nth-child(4) .lesson-number {
    background: #8E24AA;
    color: white;
}

.topic-item.theme-genetics:nth-child(5) {
    border-left-color: #7B1FA2;
}
.topic-item.theme-genetics:nth-child(5) .topic-lessons {
    background: rgba(123, 31, 162, 0.1);
    color: #7B1FA2;
}
.topic-item.theme-genetics:nth-child(5) .lesson-number {
    background: #7B1FA2;
    color: white;
}

.topic-item.theme-physiology {
    border-left-color: #E91E63;
}

.topic-item.theme-physiology:nth-child(1) {
    border-left-color: #E91E63;
}
.topic-item.theme-physiology:nth-child(1) .topic-lessons {
    background: rgba(233, 30, 99, 0.1);
    color: #E91E63;
}
.topic-item.theme-physiology:nth-child(1) .lesson-number {
    background: #E91E63;
    color: white;
}

.topic-item.theme-physiology:nth-child(2) {
    border-left-color: #EC407A;
}
.topic-item.theme-physiology:nth-child(2) .topic-lessons {
    background: rgba(236, 64, 122, 0.1);
    color: #EC407A;
}
.topic-item.theme-physiology:nth-child(2) .lesson-number {
    background: #EC407A;
    color: white;
}

.topic-item.theme-physiology:nth-child(3) {
    border-left-color: #F06292;
}
.topic-item.theme-physiology:nth-child(3) .topic-lessons {
    background: rgba(240, 98, 146, 0.1);
    color: #F06292;
}
.topic-item.theme-physiology:nth-child(3) .lesson-number {
    background: #F06292;
    color: white;
}

.topic-item.theme-physiology:nth-child(4) {
    border-left-color: #D81B60;
}
.topic-item.theme-physiology:nth-child(4) .topic-lessons {
    background: rgba(216, 27, 96, 0.1);
    color: #D81B60;
}
.topic-item.theme-physiology:nth-child(4) .lesson-number {
    background: #D81B60;
    color: white;
}

.topic-item.theme-physiology:nth-child(5) {
    border-left-color: #C2185B;
}
.topic-item.theme-physiology:nth-child(5) .topic-lessons {
    background: rgba(194, 24, 91, 0.1);
    color: #C2185B;
}
.topic-item.theme-physiology:nth-child(5) .lesson-number {
    background: #C2185B;
    color: white;
}

.topic-item.theme-ecology {
    border-left-color: #FF9800;
}

.topic-item.theme-ecology:nth-child(1) {
    border-left-color: #FF9800;
}
.topic-item.theme-ecology:nth-child(1) .topic-lessons {
    background: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}
.topic-item.theme-ecology:nth-child(1) .lesson-number {
    background: #FF9800;
    color: white;
}

.topic-item.theme-ecology:nth-child(2) {
    border-left-color: #FFA726;
}
.topic-item.theme-ecology:nth-child(2) .topic-lessons {
    background: rgba(255, 167, 38, 0.1);
    color: #FFA726;
}
.topic-item.theme-ecology:nth-child(2) .lesson-number {
    background: #FFA726;
    color: white;
}

.topic-item.theme-ecology:nth-child(3) {
    border-left-color: #FFB74D;
}
.topic-item.theme-ecology:nth-child(3) .topic-lessons {
    background: rgba(255, 183, 77, 0.1);
    color: #FFB74D;
}
.topic-item.theme-ecology:nth-child(3) .lesson-number {
    background: #FFB74D;
    color: white;
}

.topic-item.theme-ecology:nth-child(4) {
    border-left-color: #F57C00;
}
.topic-item.theme-ecology:nth-child(4) .topic-lessons {
    background: rgba(245, 124, 0, 0.1);
    color: #F57C00;
}
.topic-item.theme-ecology:nth-child(4) .lesson-number {
    background: #F57C00;
    color: white;
}

.topic-item.theme-ecology:nth-child(5) {
    border-left-color: #EF6C00;
}
.topic-item.theme-ecology:nth-child(5) .topic-lessons {
    background: rgba(239, 108, 0, 0.1);
    color: #EF6C00;
}
.topic-item.theme-ecology:nth-child(5) .lesson-number {
    background: #EF6C00;
    color: white;
}

.topic-item.theme-chemistry {
    border-left-color: #2196F3;
}

.topic-item.theme-chemistry:nth-child(1) {
    border-left-color: #2196F3;
}
.topic-item.theme-chemistry:nth-child(1) .topic-lessons {
    background: rgba(33, 150, 243, 0.1);
    color: #2196F3;
}
.topic-item.theme-chemistry:nth-child(1) .lesson-number {
    background: #2196F3;
    color: white;
}

.topic-item.theme-chemistry:nth-child(2) {
    border-left-color: #42A5F5;
}
.topic-item.theme-chemistry:nth-child(2) .topic-lessons {
    background: rgba(66, 165, 245, 0.1);
    color: #42A5F5;
}
.topic-item.theme-chemistry:nth-child(2) .lesson-number {
    background: #42A5F5;
    color: white;
}

.topic-item.theme-chemistry:nth-child(3) {
    border-left-color: #64B5F6;
}
.topic-item.theme-chemistry:nth-child(3) .topic-lessons {
    background: rgba(100, 181, 246, 0.1);
    color: #64B5F6;
}
.topic-item.theme-chemistry:nth-child(3) .lesson-number {
    background: #64B5F6;
    color: white;
}

.topic-item.theme-chemistry:nth-child(4) {
    border-left-color: #1976D2;
}
.topic-item.theme-chemistry:nth-child(4) .topic-lessons {
    background: rgba(25, 118, 210, 0.1);
    color: #1976D2;
}
.topic-item.theme-chemistry:nth-child(4) .lesson-number {
    background: #1976D2;
    color: white;
}

.topic-item.theme-chemistry:nth-child(5) {
    border-left-color: #1565C0;
}
.topic-item.theme-chemistry:nth-child(5) .topic-lessons {
    background: rgba(21, 101, 192, 0.1);
    color: #1565C0;
}
.topic-item.theme-chemistry:nth-child(5) .lesson-number {
    background: #1565C0;
    color: white;
}

.topic-item.theme-practical {
    border-left-color: #607D8B;
}

.topic-item.theme-practical:nth-child(1) {
    border-left-color: #607D8B;
}
.topic-item.theme-practical:nth-child(1) .topic-lessons {
    background: rgba(96, 125, 139, 0.1);
    color: #607D8B;
}
.topic-item.theme-practical:nth-child(1) .lesson-number {
    background: #607D8B;
    color: white;
}

.topic-item.theme-practical:nth-child(2) {
    border-left-color: #78909C;
}
.topic-item.theme-practical:nth-child(2) .topic-lessons {
    background: rgba(120, 144, 156, 0.1);
    color: #78909C;
}
.topic-item.theme-practical:nth-child(2) .lesson-number {
    background: #78909C;
    color: white;
}

.topic-item.theme-practical:nth-child(3) {
    border-left-color: #90A4AE;
}
.topic-item.theme-practical:nth-child(3) .topic-lessons {
    background: rgba(144, 164, 174, 0.1);
    color: #90A4AE;
}
.topic-item.theme-practical:nth-child(3) .lesson-number {
    background: #90A4AE;
    color: white;
}

.topic-item.theme-practical:nth-child(4) {
    border-left-color: #546E7A;
}
.topic-item.theme-practical:nth-child(4) .topic-lessons {
    background: rgba(84, 110, 122, 0.1);
    color: #546E7A;
}
.topic-item.theme-practical:nth-child(4) .lesson-number {
    background: #546E7A;
    color: white;
}

.topic-item.theme-practical:nth-child(5) {
    border-left-color: #455A64;
}
.topic-item.theme-practical:nth-child(5) .topic-lessons {
    background: rgba(69, 90, 100, 0.1);
    color: #455A64;
}
.topic-item.theme-practical:nth-child(5) .lesson-number {
    background: #455A64;
    color: white;
}

.topic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.topic-header:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.topic-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.topic-name {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95em;
}

.topic-lessons {
    background: rgba(255, 154, 0, 0.1);
    color: var(--secondary);
    padding: 6px 12px;
    border-radius: 18px;
    font-size: 0.8em;
    font-weight: 600;
    min-width: 70px;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.lesson-list {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #f8f9ff, #f0f4ff);
}

.topic-item.active .lesson-list {
    max-height: 300px;
    padding: 10px 18px 15px 18px;
}

.lesson-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    margin-bottom: 6px;
    background: white;
    border-radius: 8px;
    border-left: 2px solid var(--primary);
    transition: all 0.2s ease;
}

.lesson-item:hover {
    transform: translateX(3px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.lesson-item:last-child {
    margin-bottom: 0;
}

.lesson-number {
    background: var(--secondary);
    color: white;
    font-weight: 700;
    font-size: 0.8em;
    padding: 4px 8px;
    border-radius: 50%;
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.lesson-title {
    font-size: 0.9em;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.3;
}/* Info Banner (e.g., Parents, New Tech) */
.lp-info-banner {

    border-radius: 0;
    background-color: var(--primary); /* Using primary for one banner */
    color: var(--text-dark);
    padding: 40px 0;
    text-align: center;
}
.lp-info-banner h2 {
    color: var(--text-dark);
}
.lp-info-banner p {
    max-width: 700px;    margin-left: auto;    margin-right: auto;
}        

/* Popular Courses Carousel */
.lp-popular-courses-section {
    border-radius: 0;
    padding: 20px 0;
    background: linear-gradient(135deg, #f5e6d3 0%, #fdf4e4 50%, #fff8f0 100%);
    color: #2c3e50;
    position: relative;
    overflow: hidden;
}

.lp-popular-courses-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.lp-popular-courses-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.lp-popular-courses-section .lp-container {
    position: relative;
    z-index: 2;
}

.lp-popular-courses-section h2 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 15px;
}

.lp-popular-courses-section .lp-related-courses-text {
    color: #5a6c7d;
    font-size: 1.1em;
    margin-bottom: 50px;
}

.lp-courses-carousel-container {
    position: relative;
    margin: 0 -20px;
    padding: 0 60px;
    overflow: hidden;
}

.lp-courses-carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 20px;
    align-items: stretch;
}

.lp-course-slide {
    flex: 0 0 calc(25% - 15px);
    min-width: 280px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.lp-course-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.lp-course-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.lp-course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.lp-course-type {

    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    padding: 10px 16px;
    border-radius: 0 0 15px 15px;
    font-size: 0.9em;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: inline-block;
    
}

/* Exam Board Colored Chips */
.lp-exam-board-chip {

    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85em;
    font-weight: 700;
    border-radius: 0 0 15px 0;
    padding: 6px 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);


}

.lp-exam-board-aqa {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
}

.lp-exam-board-edexcel {
    background: linear-gradient(135deg, #4ECDC4 0%, #7BDCDC 100%);
}

.lp-exam-board-pearson-edexcel {
    background: linear-gradient(135deg, #4ECDC4 0%, #7BDCDC 100%);
}

.lp-exam-board-ocr {
    background: linear-gradient(135deg, #45B7D1 0%, #96CEB4 100%);
}

.lp-exam-board-wjec {
    background: linear-gradient(135deg, #96CEB4 0%, #FECA57 100%);
}

.lp-exam-board-cambridge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.lp-exam-board-cie {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.lp-exam-board-ccea {
    background: linear-gradient(135deg, #F093FB 0%, #F5576C 100%);
}

.lp-exam-board-sqa {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.lp-course-slide-content {
    padding: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: calc(100% - 180px); /* Subtract image height */
}

.lp-course-slide-content h4 {
    color: var(--text-dark);
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.lp-course-details {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 12px;
}

.lp-course-info {
    margin-bottom: auto; /* Push footer to bottom */
}

.lp-course-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 15px;
}

.lp-price-container {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
}

.lp-price-label {
    color: #666;
    font-size: 1em;
    font-weight: 400;
    text-transform: lowercase;
}

.lp-course-slide-content .lp-price {
    color: var(--secondary);
    font-size: 1.6em;
    font-weight: 800;
    margin: 0;
}

.lp-course-arrow {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff9800, #ffc107);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    flex-shrink: 0;
}

.lp-course-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
    color: white;
}

.lp-course-arrow svg {
    transition: transform 0.3s ease;
}

.lp-course-arrow:hover svg {
    transform: translateX(2px);
}

/* Carousel Navigation Buttons */
.lp-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #ff9800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
    backdrop-filter: blur(10px);
}

.lp-carousel-btn:hover {
    background: #ff9800;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.3);
}

.lp-carousel-btn:hover svg {
    color: white;
}

.lp-carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%) scale(0.9);
}

.lp-carousel-btn:disabled:hover {
    transform: translateY(-50%) scale(0.9);
}

.lp-carousel-prev {
    left: 10px;
}

.lp-carousel-next {
    right: 10px;
}

.lp-carousel-btn svg {
    color: #ff9800;
    transition: color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .lp-course-slide {
        flex: 0 0 calc(33.333% - 13px);
    }
}

@media (max-width: 900px) {
    .lp-course-slide {
        flex: 0 0 calc(50% - 10px);
    }
    
    .lp-courses-carousel-container {
        padding: 0 50px;
    }
}

@media (max-width: 600px) {
    .lp-course-slide {
        flex: 0 0 calc(100% - 0px);
        min-width: 260px;
    }
    
    .lp-courses-carousel-container {
        padding: 0 40px;
    }
    
    .lp-popular-courses-section h2 {
        font-size: 2em;
    }
    
    .lp-carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .lp-carousel-prev {
        left: 5px;
    }
    
    .lp-carousel-next {
        right: 5px;
    }
}

/* Additional styles extracted from inline CSS */
.lp-hero-price-flex {
    display: flex; 
    align-items: baseline; 
    flex-wrap: wrap; 
    gap: 8px; 
    margin-bottom: 10px;
}

.lp-hero-price-flex h3 {
    margin: 0;
}

.lp-hero-price-note {
    color: var(--secondary);
    font-size: 0.9em; 
    margin-bottom: 10px;
}

.lp-hero-price-note-bold {
    color: var(--secondary); 
    font-weight: bold;
}

.lp-info-item-styled {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background-color: #f0f0f0; 
    padding: 10px; 
    border-radius: var(--radius); 
    margin-bottom: 10px;
}

.lp-info-item-styled:last-of-type {
    margin-top: 10px;
}

.lp-info-item-badge {
    background-color: var(--white); 
    color: var(--text-dark); 
    padding: 5px 10px; 
    border-radius: var(--radius);
}

.lp-btn-block-styled {
    width: 100%; 
    text-align: center; 
    background-color: var(--secondary); 
    color: var(--text-light);
}

.lp-contact-info {
    font-size: 0.9em; 
    text-align: center; 
    margin-top: 15px;
}

.lp-contact-phone {
    color: var(--text-dark);
}

.lp-contact-link {
    color: var(--secondary);
}

.lp-read-more-link {
    color: var(--secondary);
}

.lp-hr-styled {
    margin: 15px 0; 
    border-color: var(--border-color);
}

.lp-accordion-section-white {
    border-radius: 0;
    background-color: var(--white);
}

.lp-faq-container {
    max-width: 1200px; 
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    align-items: start;
}

/* Single column on smaller screens */
@media (max-width: 992px) {
    .lp-faq-container {
        grid-template-columns: 1fr;
        max-width: 700px;
        gap: 0;
    }
}

.lp-text-center-margin {
    margin-top: 30px;
}

.lp-info-banner-dark {
    background-color: var(--brand-blue-dark);
}

.lp-info-banner-dark h2 {
    color: var(--white);
}

.lp-info-banner-dark p {
    color: var(--white);
}

.lp-btn-tech-update {
    background-color: var(--secondary);    color: var(--white);
}

.lp-related-courses-text {
    max-width: 700px; 
    margin: 0 auto 30px auto;
}

.lp-course-btn-styled {
    width: 100%; 
    text-align: center;
}

.lp-view-all-margin {
    margin-top: 30px;
}

/* Debug section styles */
.lp-debug-section {
    background-color: #f0f0f0; 
    padding: 20px; 
    margin: 20px; 
    border: 1px solid #ccc;
}

.lp-debug-section-error {
    background-color: #ffdddd; 
    padding: 20px; 
    margin: 20px; 
    border: 1px solid #ff0000;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .lp-accordion-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {
    .lp-hero-content, .lp-course-info-box {
        /* text-align: center; */ /* Adjusted for left alignment in columns */
        flex-basis: 100%; /* Full width when stacked */
    }
    .lp-course-info-box {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 600px) {

    h1 { font-size: 2em; }
    h2 { font-size: 1.6em; }

    .lp-discount-cards-grid, .lp-course-cards-grid {
            grid-template-columns: 1fr;
    }

    .lp-btn-outline {

        width: 100%;

    }

    .lp-course-info-box {
        padding: 10px;
        font-size: 12pt;
    }

    .lp-info-item-badge {

        width: 130px;

    }

    .lp-benefit-item img {
        margin-top: 0;
    }

    .lp-accordion-title {
        padding: 5px 5px 5px 10px;
    }

    .lp-accordion-content {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .topic-header {

        padding: 3px !important;

    }

    .topic-name {


        width: 60%;

    }

    .topic-lessons {

        width: 40%;

    }

    .lpButtonContainer {

        width: 90%;
    }

    .for-parents-section {
        text-align: left;
        border-radius: 0;
    }

    .for-parents-section h2, .for-parents-section p, .for-parents-section ul {
        text-align: left;

    }


}

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

/* Adjust scroll padding to account for any fixed headers */
html {
    scroll-padding-top: 20px;
}

/* Enhanced smooth scrolling for anchor links */
a[href^="#"] {
    transition: all 0.3s ease;
}

a[href^="#"]:hover {
    transform: translateY(-1px);
}

/* For Parents Section */
.for-parents-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff5e6 0%, #ffebd6 100%);
    position: relative;
    overflow: hidden;
}

.for-parents-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 154, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.for-parents-container {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.for-parents-content {
    flex: 1;
    max-width: 600px;
}

.for-parents-content h2 {
    color: var(--text-dark);
    font-size: 2.2em;
    margin-bottom: 25px;
    line-height: 1.3;
    position: relative;
}

.for-parents-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 2px;
}

.for-parents-content p {
    color: #555;
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
}

.for-parents-content h3 {
    color: var(--text-dark);
    font-size: 1.4em;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.for-parents-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
}

.for-parents-content ul li {
    position: relative;
    padding: 12px 0 12px 30px;
    color: #555;
    font-size: 1.05em;
    line-height: 1.6;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.for-parents-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    font-weight: bold;
}

.for-parents-content ul li:hover {
    background: rgba(255, 154, 0, 0.05);
    border-left-color: var(--secondary);
    transform: translateX(5px);
    padding-left: 35px;
}

.for-parents-content ul li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.for-parents-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.for-parents-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.for-parents-image:hover img {
    transform: translateY(-5px);
}

.for-parents-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    opacity: 0.2;
    z-index: 1;
}

/* Responsive design for for-parents section */
@media (max-width: 992px) {
    .for-parents-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .for-parents-content {
        max-width: 100%;
    }
    
    .for-parents-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .for-parents-image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .for-parents-content h2 {
        font-size: 1.8em;
    }
    
    .for-parents-content p,
    .for-parents-content ul li {
        font-size: 1em;
    }
    
    .for-parents-container {
        padding: 0 15px;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .for-parents-section {
        padding: 40px 0;
    }
    
    .for-parents-content h2 {
        font-size: 1.6em;
    }
    
    .for-parents-content ul li {
        padding-left: 25px;
    }
    
    .for-parents-content ul li:hover {
        padding-left: 30px;
    }
}

/* FAQ-specific styles - no animations, instant pop open/close */
.lp-faq-container .lp-accordion-item {
    transition: none;
}

.lp-faq-container .lp-accordion-title {
    transition: none;
}

/* FAQ title styling - instant icon change */
.lp-faq-container .lp-accordion-title::after {
    content: '+';
    font-size: 1.5em;
    font-weight: 600;
    color: var(--secondary);
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.lp-faq-container .lp-accordion-item.active .lp-accordion-title::after {
    content: '−';
    color: var(--primary);
}

.lp-faq-container .lp-accordion-content {
    transition: none;
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
}

.lp-faq-container .lp-accordion-item.active .lp-accordion-content {
    max-height: none;
    padding: 20px 25px 25px 25px;
    overflow: visible;
}

/* FAQ content styling */
.lp-faq-container .lp-accordion-content ul,
.lp-faq-container .lp-accordion-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.lp-faq-container .lp-accordion-content ul li,
.lp-faq-container .lp-accordion-content ol li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: #555;
}

.lp-faq-container .lp-accordion-content ul li::marker {
    color: var(--secondary);
}

.lp-faq-container .lp-accordion-content ol li::marker {
    color: var(--secondary);
    font-weight: bold;
}

.lp-faq-container .lp-accordion-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.lp-faq-container .lp-accordion-content p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #555;
}

.lp-faq-container .lp-accordion-content p:last-child {
    margin-bottom: 0;
}

/* FAQ title text styling */
.lp-faq-container .lp-accordion-title {
    font-size: 1.05em;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* FAQ columns styling for better visual separation */
@media (min-width: 993px) {
    .lp-faq-container .lp-accordion-item:nth-child(odd) {
        margin-right: 15px;
    }
    
    .lp-faq-container .lp-accordion-item:nth-child(even) {
        margin-left: 15px;
    }
}

