@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Primary Colors */
    --white: #FFFFFF;
    --light-gray: #ECECEC;
    --primary-dark: #4E061B;
    --primary-dark-transparent: #350404ab;
    --deep-maroon: #2C000D;
    
    /* Accent Colors */
    --primary-color: #831E4A;
    --maroon: #831E4A;
    --gold: #FFC42A;
    --secondary-color: #FFC42A;
    --dark-gray: #3F3F3F;
    --success-green: #00C724;
    --black: #000000;
    --medium-gray: #4D4D4D;
    --dark-charcoal: #2F2F2F;
    --light-border: #D9D9D9;
    --dark-maroon: #700A36;
    --off-white: #E9E9E9;
    --yellow: #FCB704;
    --burgundy: #540720;
    --bg-light: #F0F0F0;
    --text-dark: #424242;
    --text-darker: #212121;
    --charcoal: #363636;
    --pale-gray: #EDEDED;
    --slate: #494949;
    --text-gray: #666666;
    --border-color: #eaeaea;
    
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.top-header {
    background-color: var(--white);
    padding: 5px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

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

.header-left {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 500;
}

.header-center {
    display: flex;
    justify-content: center;
}

.header-center .logo {
    height: 60px; 
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-btn {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 5px 18px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 196, 42, 0.3);
    margin-bottom: 0;
}

.header-btn:hover {
    background-color: #e8b220;
    color: var(--text-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 196, 42, 0.4);
}

/* Marquee */
.marquee-banner {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    white-space: nowrap;
}

.marquee-banner .container {
    overflow: hidden;
    padding: 0 20px;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
    font-size: 13px;
    font-weight: 500;
}

.marquee-content span {
    margin: 0 12px;
}

.marquee-content .separator {
    opacity: 0.5;
    margin: 0 1px;
}

.marquee-content .marquee-last {
    margin-right: 180px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hero Section */
.hero {
    background-color: var(--bg-light); 
    padding: 60px 0 100px;
    display: flex;
    align-items: flex-start;
}

.hero-container {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-content h1 .highlight {
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.feature-card {
    background-color: var(--white);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.content-two-columns {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.content-left-column {
    flex: 1.3;
}

.content-right-column {
    flex: 0.7;
}

.content-left-column {
    display: flex;
    flex-direction: column;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 13px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(131, 29, 74, 0.3);
    width: fit-content;
}

.cta-button:hover {
    background-color: #6a163a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(131, 29, 74, 0.4);
}

.webinar-details-box {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background-color: var(--white);
    position: relative;
}

.webinar-top {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 16px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
    position: relative;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.webinar-top::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: var(--primary-color) transparent transparent transparent;
    z-index: 2;
}

.webinar-top p {
    font-size: 12px;
    margin-bottom: 2px;
    font-weight: 500;
}

.webinar-top h4 {
    font-size: 12px;
    font-weight: 700;
}

.webinar-bottom {
    background-color: #F8D6E1; /* Lighter pink for the bottom box */
    padding: 12px 16px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    text-align: center;
    color: var(--text-dark);
    padding-top: 18px; /* Space for the arrow */
}

.webinar-bottom .fee {
    font-size: 14px;
    margin-bottom: 4px;
}

.webinar-bottom .fee strong {
    font-weight: 700;
    font-size: 16px;
}

.webinar-bottom .secure {
    font-size: 11px;
    color: #444;
}

.webinar-bottom .secure strong {
    font-weight: 600;
}

.hero-image-container {
    flex: 0 0 35%;
    position: relative;
    margin: 0;
    padding: 0;
}

.hero-image {
    width: 100%;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: bottom;
}

.image-caption {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 14px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    font-weight: 600;
    font-size: 16px;
    margin-top: -40px;
    position: relative;
    z-index: 2;
    line-height: 1;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-container {
        gap: 20px;
    }
    .header-right {
        gap: 10px;
    }
    .search-box {
        min-width: 180px;
    }
}

@media (max-width: 992px) {
    .header-container {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    
    .header-left {
        order: 2;
        width: 100%;
        justify-content: center;
        gap: 10px;
    }
    
    .header-center {
        order: 1;
        width: 100%;
    }
    
    .header-center .logo {
        height: 40px;
    }
    
    .header-right {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .top-header {
        padding: 8px 0;
    }
    
    .hero-container {
        flex-direction: column;
    }
    
    .hero-image-container {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        flex: 1;
    }
    
    .content-two-columns {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }
    
    .top-header {
        padding: 6px 0;
    }
    
    .header-left {
        font-size: 11px;
    }
    
    .header-center .logo {
        height: 35px;
    }
    
    .header-right {
        display: none;
    }
    
    .marquee-banner {
        padding: 6px 0;
    }
    
    .marquee-content span {
        font-size: 11px;
        margin: 0 8px;
    }
    
    .hero {
        padding: 15px 0;
    }
    
    .hero-content h1 {
        font-size: 20px;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .feature-card {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
        margin-bottom: 12px;
        padding: 11px 20px;
        font-size: 14px;
    }
    
    .webinar-details-box {
        width: 100%;
        max-width: 100%;
    }
    
    .webinar-top {
        padding: 8px 12px;
    }
    
    .webinar-top p {
        font-size: 11px;
    }
    
    .webinar-top h4 {
        font-size: 12px;
    }
    
    .webinar-bottom {
        padding: 10px 12px;
        padding-top: 16px;
    }
    
    .webinar-bottom .fee {
        font-size: 12px;
    }
    
    .webinar-bottom .fee strong {
        font-size: 14px;
    }
    
    .webinar-bottom .secure {
        font-size: 10px;
    }
    
    .image-caption {
        padding: 10px;
        font-size: 14px;
    }
    
    .search-box {
        display: none;
    }
}

/* Registration Section */
.registration-section {
    padding: 30px 0;
    background-color: var(--white);
}

.registration-box {
    background-color: var(--secondary-color);
    border-radius: 16px;
    padding: 25px 30px;
    max-width: 850px;
    margin: -80px auto;
}

.registration-title {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.registration-info {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.fee-badge {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.secure-badge {
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-input {
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
}

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

.pay-button {
    background-color: #00c853;
    color: var(--white);
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    margin: 10px auto 8px;
    display: block;
}

.pay-button:hover {
    background-color: #00a844;
    transform: translateY(-2px);
}

.payment-note {
    text-align: center;
    font-size: 11px;
    color: var(--text-gray);
    margin: 0;
}

/* Countdown Section */
.countdown-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 100px 0;
    flex-wrap: wrap;
}

.countdown-item {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 90px;
}

.countdown-item.highlight {
    background-color: #F8D6E1;
    color: var(--primary-color);
}

.countdown-item.light {
    background-color: #E8D5DE;
    color: var(--primary-color);
}

.countdown-number {
    font-size: 36px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.countdown-label {
    font-size: 13px;
    font-weight: 600;
    margin-top: 5px;
    display: block;
}

/* Bottom CTA */
.bottom-cta {
    text-align: center;
    padding-bottom: 0;
    margin-top: 0;
}

/* Apply negative margin only on desktop */
@media (min-width: 769px) {
    .bottom-cta {
        margin-top: -80px;
    }
}

/* Ensure no borders on any sections */
section {
    border: none;
    box-shadow: none;
}

.registration-title,
.founder-title,
.hero-content h1 {
    border: none;
    box-shadow: none;
}

.bottom-cta-btn {
    margin-bottom: 0;
}

/* Mobile Registration */
@media (max-width: 768px) {
    .registration-section {
        padding: 20px 0;
    }
    
    .registration-box {
        padding: 20px;
        margin: 0 10px;
    }
    
    .registration-title {
        font-size: 18px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .countdown-section {
        gap: 6px;
        margin: 15px 0;
    }
    
    .countdown-item {
        padding: 8px 10px;
        min-width: 65px;
    }
    
    .countdown-number {
        font-size: 22px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .pay-button {
        width: 100%;
        padding: 11px 20px;
    }
}

/* Founder Section */
.founder-section {
    padding: 40px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.founder-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
}

.founder-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.founder-text {
    flex: 1;
}

.founder-intro {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.5;
}

.founder-bio {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
}

.founder-bio strong {
    font-weight: 600;
}

.video-container {
    flex: 0 0 45%;
}

.youtube-video {
    border-radius: 12px;
    width: 100%;
}

/* Mobile Founder */
@media (max-width: 992px) {
    .founder-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .video-container {
        flex: 1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .founder-section {
        padding: 25px 0;
    }
    
    .founder-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .founder-intro {
        font-size: 14px;
    }
    
    .founder-bio {
        font-size: 13px;
    }
    
    .youtube-video {
        height: 220px;
    }
}

/* Who This Webinar Is For Section */
.who-section {
    padding: 40px 0;
    background-color: var(--white);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M10,10 L30,10 L30,30 L10,30 Z" fill="%23831D4A" opacity="0.03"/><path d="M70,70 L90,70 L90,90 L70,90 Z" fill="%23831D4A" opacity="0.03"/><path d="M50,20 L70,20 L70,40 L50,40 Z" fill="%23831D4A" opacity="0.02"/></svg>');
}

.who-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.who-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

.who-subtitle {
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.who-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.who-text {
    flex: 1;
}

.who-list {
    list-style: none;
    margin-bottom: 20px;
}

.who-list li {
    font-size: 15px;
    color: var(--text-dark);
    padding: 10px 0 10px 30px;
    position: relative;
    line-height: 1.5;
}

.who-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
}

.who-cta-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.who-cta-btn {
    margin-bottom: 0;
}

.who-image-container {
    flex: 0 0 42%;
}

.who-image {
    width: 100%;
    border-radius: 16px;
    display: block;
}

/* Mobile Who Section */
@media (max-width: 992px) {
    .who-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .who-image-container {
        flex: 1;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        order: -1;
    }
}

@media (max-width: 768px) {
    .who-section {
        padding: 25px 0;
    }
    
    .who-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .who-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .who-list li {
        font-size: 12px;
        padding: 4px 0 4px 22px;
        line-height: 1.4;
    }
    
    .who-list li::before {
        left: 6px;
        font-size: 14px;
    }
    
    .who-cta-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .who-cta-btn {
        width: 100%;
        text-align: center;
    }
    
    .who-image {
        border-radius: 12px;
    }
}

/* What You Will Gain From This Session Section */
.what-section {
    padding: 40px 0;
    background-color: var(--bg-light);
}

.what-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.what-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

.what-subtitle {
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.what-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.what-image-container {
    flex: 0 0 42%;
}

.what-image {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.what-text {
    flex: 1;
}

.what-intro {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.what-list {
    list-style: none;
    margin-bottom: 25px;
}

.what-list li {
    font-size: 15px;
    color: var(--text-dark);
    padding: 10px 0 10px 30px;
    position: relative;
    line-height: 1.5;
}

.what-list li::before {
    content: '●';
    position: absolute;
    left: 10px;
    color: var(--text-dark);
    font-size: 14px;
}

.what-cta-btn {
    margin-bottom: 0;
}

/* Mobile What Section */
@media (max-width: 992px) {
    .what-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .what-image-container {
        flex: 1;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        order: -1;
    }
}

@media (max-width: 768px) {
    .what-section {
        padding: 25px 0;
    }
    
    .what-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .what-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .what-intro {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .what-list li {
        font-size: 12px;
        padding: 4px 0 4px 22px;
        line-height: 1.4;
    }
    
    .what-list li::before {
        left: 6px;
        font-size: 12px;
    }
    
    .what-cta-btn {
        width: 100%;
        text-align: center;
    }
    
    .what-image {
        border-radius: 12px;
    }
}

/* The Reality Most Preschool Owners Are Facing Section */
.reality-section {
    padding: 40px 0;
    background-color: var(--white);
}

.reality-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.reality-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

.reality-subtitle {
    text-align: center;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.reality-note {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.reality-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.reality-card {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 25px 20px;
    border-radius: 12px;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.reality-card-text {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Where Things Start Breaking Section */
.breaking-section {
    padding: 40px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.breaking-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 35px;
    position: relative;
}

.breaking-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--white);
    margin: 10px auto 0;
}

.breaking-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.breaking-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 280px;
    text-align: center;
}

.icon-circle {
    width: 120px;
    height: 120px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.breaking-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.breaking-card-content {
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    padding: 20px 15px;
}

.breaking-card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.breaking-card-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    opacity: 0.95;
}

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

.breaking-cta-btn {
    background-color: var(--white);
    color: var(--primary-color);
    margin-bottom: 0;
}

.breaking-cta-btn:hover {
    background-color: #f0f0f0;
    color: var(--primary-color);
}

/* Mobile Reality & Breaking */
@media (max-width: 768px) {
    .reality-section,
    .breaking-section {
        padding: 25px 0;
    }
    
    .reality-title,
    .breaking-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .reality-subtitle {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .reality-note {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .reality-cards {
        gap: 10px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reality-card {
        padding: 15px 10px;
        min-width: auto;
        width: 100%;
    }
    
    .reality-card-text {
        font-size: 12px;
        line-height: 1.3;
    }
    
    .breaking-cards {
        gap: 20px;
    }
    
    .icon-circle {
        width: 100px;
        height: 100px;
    }
    
    .breaking-icon {
        width: 55px;
        height: 55px;
    }
    
    .breaking-card-content {
        padding: 15px 12px;
    }
    
    .breaking-card-title {
        font-size: 14px;
    }
    
    .breaking-card-text {
        font-size: 13px;
    }
    
    .breaking-cta-btn {
        width: 100%;
    }
    
    .breaking-card {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        max-width: 100%;
    }
    
    .icon-circle {
        width: 70px;
        height: 70px;
        margin-bottom: 0;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .breaking-icon {
        width: 40px;
        height: 40px;
    }
    
    .breaking-card-content {
        padding: 12px 15px;
    }
}

/* How This Webinar Helps You Solve It Section */
.how-section {
    padding: 40px 0;
    background-color: var(--bg-light);
}

.how-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
}

.how-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

.how-subtitle {
    text-align: center;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.how-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.how-card {
    text-align: center;
}

.how-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
    display: block;
}

.how-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.how-card-text {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

.how-box {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

.how-box-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.how-box-text {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

/* Mobile How Section */
@media (max-width: 992px) {
    .how-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .how-section {
        padding: 25px 0;
    }
    
    .how-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .how-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .how-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .how-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .how-image {
        width: 100%;
        margin-bottom: 10px;
        flex-shrink: 0;
    }
    
    .how-card-title {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .how-card-text {
        font-size: 12px;
    }
    
    .how-box {
        padding: 15px;
        border-radius: 12px;
    }
    
    .how-box-title {
        font-size: 14px;
    }
    
    .how-box-text {
        font-size: 13px;
    }
}

/* What Strong Preschools Are Doing Differently Section */
.strong-section {
    padding: 40px 0;
    background-color: var(--white);
}

.strong-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
}

.strong-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

.strong-subtitle {
    text-align: center;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 35px;
}

.strong-table-container {
    max-width: 750px;
    margin: 0 auto 30px;
    overflow-x: auto;
}

.strong-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(134, 42, 84, 0.12);
}

.strong-table thead th {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 18px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}

.strong-table tbody td {
    padding: 16px 20px;
    font-size: 15px;
    color: var(--text-dark);
    border: 1px solid #e0d0d8;
    vertical-align: middle;
}

.strong-table tbody td .table-icon {
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.strong-table tbody tr:hover {
    background-color: var(--bg-light);
}

.strong-table .table-icon {
    width: 24px;
    height: 24px;
}

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

.strong-cta-btn {
    margin-bottom: 0;
}

/* Trusted by Preschools Across India Section */
.trusted-section {
    padding: 40px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.trusted-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 35px;
    position: relative;
}

.trusted-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--white);
    margin: 10px auto 0;
}

.trusted-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 700px;
    margin: 0 auto 35px;
}

.trusted-card {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.trusted-number {
    font-size: 30px;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.trusted-label {
    font-size: 14px;
    font-weight: 500;
    display: block;
}

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

.trusted-cta-btn {
    background-color: var(--white);
    color: var(--primary-color);
    margin-bottom: 0;
}

.trusted-cta-btn:hover {
    background-color: #f0f0f0;
    color: var(--primary-color);
}

/* Mobile Strong & Trusted */
@media (max-width: 768px) {
    .strong-section,
    .trusted-section {
        padding: 25px 0;
    }
    
    .strong-title,
    .trusted-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .strong-subtitle {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .strong-table thead th {
        padding: 12px 10px;
        font-size: 12px;
    }
    
    .strong-table tbody td {
        padding: 10px 8px;
        font-size: 11px;
    }
    
    .strong-table .table-icon {
        width: 18px;
        height: 18px;
        margin-right: 5px;
    }
    
    .trusted-cards {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 100%;
    }
    
    .trusted-card {
        padding: 15px;
    }
    
    .trusted-number {
        font-size: 24px;
    }
    
    .trusted-label {
        font-size: 13px;
    }
    
    .strong-cta-btn,
    .trusted-cta-btn {
        width: 100%;
    }
}

/* What You Will Walk Away With Section */
.walkaway-section {
    padding: 40px 0;
    background-color: var(--white);
}

.walkaway-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
}

.walkaway-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

.walkaway-subtitle {
    text-align: center;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 35px;
}

.walkaway-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 auto 40px;
}

.walkaway-card {
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
}

.walkaway-card-light {
    background-color: #ffffff !important;
    color: #333333 !important;
}

.walkaway-card-dark {
    background-color: #831E4A !important;
    color: #ffffff !important;
}

.walkaway-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto 15px;
}

.walkaway-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.walkaway-card-text {
    font-size: 16px;
    margin: 0;
}

/* Bonus Section */
.bonus-section {
    max-width: 700px;
    margin: 0 auto 35px;
    background: linear-gradient(135deg, #fff5d6 0%, #ffecd6 100%);
    border-radius: 20px;
    padding: 25px 30px;
}

.bonus-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bonus-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
}

.bonus-text {
    flex: 1;
}

.bonus-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 8px;
}

.bonus-subtitle {
    font-size: 15px;
    color: var(--text-dark);
    margin: 0 0 12px;
    font-weight: 600;
}

.bonus-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bonus-list li {
    font-size: 14px;
    color: var(--text-dark);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.bonus-list li::before {
    content: '•';
    position: absolute;
    left: 5px;
    color: var(--primary-color);
    font-weight: bold;
}

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

.walkaway-cta-btn {
    margin-bottom: 0;
}

/* Mobile Walkaway & Bonus */
@media (max-width: 768px) {
    .walkaway-section {
        padding: 25px 0;
    }
    
    .walkaway-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .walkaway-subtitle {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .walkaway-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .walkaway-card {
        padding: 20px 15px;
    }
    
    .walkaway-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .walkaway-card-title {
        font-size: 15px;
    }
    
    .walkaway-card-text {
        font-size: 14px;
    }
    
    .bonus-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .bonus-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .bonus-icon {
        width: 60px;
        height: 60px;
    }
    
    .bonus-title {
        font-size: 17px;
    }
    
    .bonus-subtitle {
        font-size: 13px;
    }
    
    .bonus-list li {
        font-size: 13px;
        padding: 5px 0;
        padding-left: 0;
    }
    
    .bonus-list li::before {
        position: static;
        margin-right: 8px;
    }
    
    .walkaway-cta-btn {
        width: 100%;
    }
}

/* Secure Your Seat Section */
.secure-section {
    padding: 40px 0;
    background-color: var(--bg-light);
}

.secure-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 35px;
    position: relative;
}

.secure-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

.secure-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 35px;
}

.secure-card {
    text-align: center;
}

.secure-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
    display: block;
}

.secure-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.secure-badge {
    text-align: center;
}

.secure-badge-text {
    display: inline-block;
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background: url('images/testimonials.png') center/cover no-repeat;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-title-white {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 35px;
}

.testimonials-wrapper {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    padding: 0 15px;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 45px 35px;
    display: flex;
    align-items: center;
    gap: 30px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    min-height: 250px;
}

.testimonial-image {
    flex-shrink: 0;
}

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

.testimonial-text-wrapper {
    flex: 1;
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Mobile Secure */
@media (max-width: 768px) {
    .secure-section {
        padding: 25px 0;
    }
    
    .secure-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .secure-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
        margin-bottom: 25px;
    }
    
    .secure-image {
        max-width: 250px;
        margin: 0 auto 12px;
    }
    
    .secure-card-title {
        font-size: 15px;
    }
    
    .secure-badge-text {
        font-size: 13px;
        padding: 8px 20px;
    }
    
    .testimonials-section {
        padding: 30px 0;
    }
    
    .section-title-white {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .testimonials-wrapper {
        max-width: 100%;
    }
    
    .testimonial-content {
        min-height: auto;
        padding: 25px 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .testimonial-image img {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-quote {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .testimonial-author {
        font-size: 13px;
    }
    
    .testimonial-dots {
        margin-top: 20px;
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 25px;
    }
}

/* Footer Section */
.footer-section {
    background-color: var(--primary-color);
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
}

.footer-logo-img {
    width: 120px;
    height: auto;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-list li {
    padding: 4px 0;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    word-break: break-word;
}

.footer-list li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list li a:hover {
    color: var(--secondary-color);
}

.footer-list .icon {
    font-size: 16px;
}

.footer-bottom {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright,
.footer-privacy {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 25px 0;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .footer-logo-img {
        width: 100px;
    }
    
    .footer-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-copyright,
    .footer-privacy {
        font-size: 12px;
    }
}

/* ========================================
   Form Section
   ======================================== */
.form-section {
    background: transparent;
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.registration-form {
    background: var(--gold);
    padding: 40px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 14px;
    background: var(--white);
    color: var(--text-darker);
    transition: all 0.3s;
}

.form-group input::placeholder {
    color: var(--medium-gray);
}

.form-group select {
    color: var(--medium-gray);
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(131, 30, 74, 0.2);
}

/* Phone input with country code */
.phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 8px;
}

.phone-prefix {
    position: absolute;
    left: 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-darker);
    pointer-events: none;
    z-index: 1;
}

.phone-input-wrapper input[type="tel"] {
    padding-left: 50px !important;
}

.form-submit-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.btn-submit {
    padding: 14px 50px;
    background: var(--success-green);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-primary);
}

.btn-submit:hover {
    background: #00a81f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 199, 36, 0.3);
}

/* Payment UI Elements */
.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--burgundy);
    margin-bottom: 15px;
}

.payment-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-amount {
    background: var(--burgundy);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
}

.payment-secure {
    background: rgba(255, 255, 255, 0.9);
    color: var(--burgundy);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.payment-info {
    font-size: 12px;
    color: var(--burgundy);
    opacity: 0.9;
    margin: 0;
    font-style: italic;
}

/* Mobile Form Styles */
@media (max-width: 768px) {
    .form-section {
        margin-top: -60px;
    }

    .registration-form {
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .btn-submit {
        padding: 12px 40px;
    }
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    padding: 60px 0;
    background: url('images/testimonials.png') center/cover no-repeat;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-title-white {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 35px;
}

.testimonials-wrapper {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    padding: 0 15px;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 45px 35px;
    display: flex;
    align-items: center;
    gap: 30px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    min-height: 250px;
}

.testimonial-image {
    flex-shrink: 0;
}

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

.testimonial-text-wrapper {
    flex: 1;
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Mobile Testimonials Styles */
@media (max-width: 768px) {
    .testimonials-wrapper {
        max-width: 100%;
    }

    .testimonial-content {
        min-height: auto;
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .form-section {
        margin-top: -50px;
    }

    .registration-form {
        padding: 25px 20px;
    }
}
