/* ========================================
   CSS Variables - Colors from Design
   ======================================== */
:root {
    /* Primary Colors */
    --white: #FFFFFF;
    --light-gray: #ECECEC;
    --primary-dark: #4E061B;
    --primary-dark-transparent: #350404ab;
    --deep-maroon: #2C000D;

    /* Accent Colors */
    --maroon: #831E4A;
    --gold: #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;

    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
}

/* ========================================
   Global Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    color: var(--text-darker);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* ========================================
   Header Styles
   ======================================== */
.header {
    background: var(--white);
    padding: 10px 0;
    box-shadow: none;
    border-bottom: 1px solid var(--light-border);
}

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

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

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 400;
}

.header-contact a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.header-contact a:hover {
    color: var(--burgundy);
}

.header-contact .separator {
    color: var(--light-border);
}

.logo a {
    display: inline-block;
    line-height: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--maroon);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    background: var(--maroon);
    padding: 60px 0 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.title-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--burgundy);
    padding: 12px 30px;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 15px;
    border-radius: 0 0px 16px 16px;
    border-bottom: 3px solid #d4a017;
    border-right: 3px solid #d4a017;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--gold);
    text-transform: capitalize;
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-description {
    font-size: 15px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
    color: var(--white);
}

.hero-cta-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: nowrap;
}

.cta-button-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

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

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

.webinar-note {
    font-size: 12px;
    opacity: 0.85;
    margin: 0;
    text-align: center;
    width: 100%;
}

.webinar-timing-box {
    background: transparent;
    text-align: center;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timing-label {
    background: var(--gold);
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    color: var(--burgundy);
    margin: 0 0 -2px 0;
    letter-spacing: 0.5px;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.timing-details {
    border: 1px solid var(--white);
    border-radius: 0 0 18px 18px;
    border-top: none;
    padding: 14px 25px 12px 25px;
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

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

.hero-main-img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* ========================================
   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;
}


/* ========================================
   Trusted By Section
   ======================================== */
.trusted-by-section {
    background: var(--white);
    padding: 30px 0;
    text-align: center;
}

.trusted-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-darker);
    margin-bottom: 25px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trusted-logo-item {
    text-align: center;
}

.trusted-logo-item img {
    height: 60px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
}

.trusted-stats {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: nowrap;
}

.stat-item {
    font-size: 13px;
    color: var(--text-darker);
    font-weight: 600;
    white-space: nowrap;
    line-height: 1;
}

.stat-separator {
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 300;
    line-height: 1;
}

/* ========================================
   Video & About Section
   ======================================== */
.video-about-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.video-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-column {
    display: flex;
    justify-content: center;
}

.video-wrapper {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.about-column {
    padding-left: 20px;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    object-fit: contain;
}

.video-wrapper video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.8);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--burgundy) 0%, #6b1035 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 1;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s;
}

.video-wrapper video:not([poster])::-webkit-media-controls-start-playback-button {
    display: none;
}

.video-wrapper:hover .video-placeholder {
    opacity: 0.9;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.video-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
}

.video-subtitle {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
    text-align: center;
}

/* About Content Styling */
.about-content {
    text-align: left;
}

.about-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-darker);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--burgundy);
    margin: 0 0 25px 0;
    line-height: 1.5;
}

.about-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: left;
    margin: 0;
}

/* ========================================
   Dropout Reasons Section
   ======================================== */
.dropout-section {
    background: var(--white) url('images/kids-playing.png') no-repeat left center;
    background-size: contain;
    padding: 50px 0 0 0;
    min-height: 450px;
    position: relative;
}

.dropout-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 350px;
    padding-bottom: 40px;
}

.stats-card {
    background: var(--burgundy);
    padding: 0;
    padding-top: 0;
    border-radius: 25px;
    overflow: visible;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 550px;
    width: 100%;
    position: relative;
}

.stats-header {
    background: var(--gold);
    padding: 18px 35px;
    border-radius: 0 0 20px 20px;
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    max-width: 300px;
    text-align: center;
    margin-bottom: -10px;
    z-index: 2;
}

.stats-header h3 {
    font-size: 22px;
    font-weight: 800;
    font-family: var(--font-primary);
    color: var(--black);
    margin: 0;
    line-height: 1.3;
}

.stats-list {
    padding: 20px 28px 25px 28px;
    position: relative;
    z-index: 1;
}

.stat-item {
    margin-bottom: 14px;
}

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

.stat-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.stat-value {
    color: var(--white);
    font-size: 26px;
    font-weight: 800;
}

.stat-progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.stat-progress-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 10px;
    transition: width 0.5s ease-out;
}

.stats-note {
    background: var(--primary-dark);
    padding: 16px 28px;
    margin: 0;
    color: var(--white);
    font-size: 11px;
    line-height: 1.5;
    border-radius: 0 0 25px 25px;
}

/* ========================================
   Parent Trust Section
   ======================================== */
.parent-trust-section {
    padding: 40px 0 40px 0;
    background: var(--bg-light);
}

.trust-header {
    text-align: center;
    margin-bottom: 40px;
}

.trust-header .section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-darker);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.trust-cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.trust-card {
    background: var(--white);
    padding: 28px 22px;
    border-radius: 15px;
    border-left: 6px solid var(--maroon);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    grid-column: span 2;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(131, 30, 74, 0.15);
}

.trust-card:nth-child(4) {
    grid-column: 2 / 4;
}

.trust-card:nth-child(5) {
    grid-column: 4 / 6;
}

.trust-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 12px;
}

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

.trust-footer {
    text-align: center;
    font-size: 14px;
    color: var(--text-dark);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   What's Different Section
   ======================================== */
.whats-different-section {
    padding: 40px 0;
    background: var(--white);
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--text-darker);
    margin-bottom: 20px;
    line-height: 1.3;
}

.different-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.different-card-item {
    background: var(--burgundy);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    transition: all 0.3s;
}

.different-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(84, 7, 32, 0.3);
}

.card-icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.card-icon-box img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.different-card-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.different-card-item p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
}

.section-timing-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.timing-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
}

.countdown-section .section-timing-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
}

/* ========================================
   Silent Crisis Section
   ======================================== */
.silent-crisis-section {
    padding: 40px 0;
    background: var(--bg-light);
}

.crisis-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.crisis-stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.crisis-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--maroon);
    margin-bottom: 15px;
    line-height: 1;
}

.crisis-stat-card p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

.crisis-footer {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-darker);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Chart Section
   ======================================== */
.chart-section {
    padding: 40px 0 20px 0;
    background: var(--white);
}

.chart-container {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.chart-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* ========================================
   Modern Partner Section
   ======================================== */
.modern-partner-section {
    padding: 40px 0 10px 0;
    background: var(--white);
}

.partner-table-wrapper {
    max-width: 900px;
    margin: 0 auto 40px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.partner-table {
    width: 100%;
    border-collapse: collapse;
}

.partner-table thead {
    background: var(--burgundy);
}

.partner-table thead th {
    padding: 25px 30px;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.partner-table tbody {
    background: var(--bg-light);
}

.partner-table tbody tr {
    border-bottom: 1px solid var(--light-border);
    background: var(--bg-light);
}

.partner-table tbody tr:last-child {
    border-bottom: none;
}

.partner-table tbody td {
    padding: 20px 30px;
    font-size: 15px;
    color: var(--text-darker);
}

.partner-table tbody td:first-child {
    font-weight: 600;
}

.partner-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-text {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.btn-cta-green:hover {
    background: #00a81f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 199, 36, 0.3);
}

/* ========================================
   Ecosystem Section
   ======================================== */
.ecosystem-section {
    padding: 60px 0;
    background: var(--white);
}

.ecosystem-header {
    text-align: center;
    margin-bottom: 40px;
}

.ecosystem-subtitle {
    font-size: 15px;
    color: var(--text-dark);
    max-width: 800px;
    margin: 15px auto 0;
    line-height: 1.5;
}

.ecosystem-subtitle strong {
    color: var(--maroon);
    font-weight: 700;
}

.ecosystem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 35px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.ecosystem-card {
    text-align: left;
}

.ecosystem-image {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 15px;
}

.ecosystem-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.ecosystem-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.ecosystem-card p {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
}

.ecosystem-footer {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.ecosystem-footer p {
    font-size: 18px;
    color: var(--text-darker);
    margin: 0;
    font-weight: 600;
}

.ecosystem-footer strong {
    color: var(--maroon);
    font-weight: 800;
}

/* ========================================
   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: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 40px;
}

.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);
}

/* ========================================
   Countdown Section
   ======================================== */
.countdown-section {
    padding: 60px 0;
    background: var(--off-white);
}

.countdown-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: var(--text-darker);
    margin-bottom: 30px;
    line-height: 1.3;
}

.countdown-features {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.countdown-feature {
    display: flex;
    align-items: stretch;
    gap: 15px;
    max-width: 250px;
}

.feature-divider {
    color: var(--maroon);
    font-size: 80px;
    font-weight: 300;
    line-height: 0.8;
    display: flex;
    align-items: center;
}

.countdown-feature p {
    font-size: 14px;
    color: var(--text-darker);
    line-height: 1.5;
    margin: 0;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.timer-box {
    background: var(--burgundy);
    border-radius: 15px;
    padding: 30px 35px;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(84, 7, 32, 0.3);
}

.timer-number {
    display: block;
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.timer-label {
    display: block;
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
    text-transform: capitalize;
}

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

.btn-webinar-cta {
    background: var(--success-green);
    color: var(--white);
    padding: 16px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-primary);
    margin-bottom: 15px;
}

.btn-webinar-cta:hover {
    background: #00a81f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 199, 36, 0.3);
}

.countdown-note {
    font-size: 14px;
    color: var(--text-dark);
    margin: 0;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    padding: 60px 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 10px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--light-border);
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-darker);
    user-select: none;
}

.faq-icon {
    font-size: 12px;
    color: var(--medium-gray);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 15px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   Final CTA Section
   ======================================== */
.final-cta-section {
    position: relative;
    padding: 20px 0;
    background: url('images/cta.png') center/cover no-repeat;
    color: var(--white);
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

.final-cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.final-cta-content p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-join-webinar {
    background: var(--success-green);
    color: var(--white);
    padding: 16px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-primary);
    margin-bottom: 10px;
}

.btn-join-webinar:hover {
    background: #00a81f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 199, 36, 0.3);
}

.cta-seats {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--burgundy);
    color: var(--white);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 60px;
    padding: 60px 0 40px;
    align-items: start;
}

.footer-logo-section {
    display: flex;
    justify-content: center;
}

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

.footer-links-section {
    display: flex;
    align-items: center;
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact-section h4 {
    color: var(--gold);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-contact li {
    margin-bottom: 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact .contact-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

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

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    background: var(--gold);
    padding: 20px 0;
}

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

.footer-bottom-content p {
    margin: 0;
    font-size: 14px;
    color: var(--text-darker);
    font-weight: 500;
}

.footer-column p {
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

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

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--gold);
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet and Below */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-content {
        gap: 40px;
    }

    .trust-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .trust-card:nth-child(4) {
        grid-column: auto;
        margin: 0;
    }

    .trust-card:nth-child(5) {
        grid-column: auto;
        margin: 0;
    }

    .different-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .section-timing-wrapper {
        margin-top: 40px;
    }

    .timing-image {
        max-width: 500px;
    }

    .countdown-section .section-timing-wrapper {
        margin-top: 35px;
        margin-bottom: 35px;
    }

    .ecosystem-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header {
        padding: 15px 0;
    }

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

    .header-contact {
        display: none;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .logo {
        margin: 0 auto;
    }

    .hero {
        padding: 30px 0 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }

    .hero-image-container {
        margin-top: 15px;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .title-badge {
        font-size: 18px;
        padding: 8px 20px;
        border-bottom: 3px solid #d4a017;
        border-left: 3px solid #d4a017;
        border-right: 3px solid #d4a017;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 24px;
        font-style: italic;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-description br {
        display: none;
    }

    .hero-cta-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        margin-bottom: 0;
        flex-wrap: wrap;
    }

    .cta-button-section {
        width: 100%;
        align-items: center;
    }

    .webinar-timing-box {
        width: 100%;
        min-width: auto;
        gap: 0;
    }

    .timing-label {
        font-size: 15px;
        padding: 10px 28px;
        margin: 0 0 -2px 0;
    }

    .timing-details {
        font-size: 12px;
        padding: 12px 18px 10px 18px;
        margin: 0 0 6px 0;
    }

    .btn-webinar {
        width: auto;
        text-align: center;
        padding: 12px 35px;
        font-size: 14px;
    }

    .webinar-note {
        text-align: center;
        margin: 0;
        padding: 0;
        font-size: 12px;
    }

    .hero-right {
        order: 1;
        margin-top: 0;
    }

    .hero-main-img {
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }

    .form-section {
        margin-top: -60px;
    }

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

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

    .trusted-by-section {
        padding: 25px 0;
    }

    .trusted-title {
        margin-bottom: 20px;
    }

    .video-about-section {
        padding: 50px 0;
    }

    .video-about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-column {
        padding-left: 0;
    }

    .video-wrapper {
        border-radius: 15px;
        max-width: 400px;
    }

    .about-content {
        text-align: center;
    }

    .about-title {
        font-size: 28px;
    }

    .about-subtitle {
        font-size: 16px;
        margin: 15px 0 20px 0;
    }

    .about-text {
        font-size: 15px;
        line-height: 1.7;
        text-align: center;
    }

    .trusted-logos {
        gap: 20px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .trusted-logo-item {
        flex: 1;
        min-width: 0;
    }

    .trusted-logo-item img {
        height: 40px;
        max-width: 100%;
    }

    .trusted-stats {
        gap: 8px;
        margin-top: 20px;
        flex-wrap: wrap;
    }

    .stat-item {
        font-size: 11px;
        line-height: 1;
    }

    .stat-separator {
        font-size: 11px;
        line-height: 1;
    }

    .dropout-section {
        background: var(--white);
        padding: 0 0 30px 0;
        min-height: auto;
        position: relative;
    }

    .dropout-section::before {
        content: '';
        display: block;
        width: 100%;
        height: 250px;
        background: url('images/kids-playing.png') center/cover no-repeat;
    }

    .dropout-content {
        justify-content: center;
        min-height: auto;
        padding-bottom: 0;
        margin-top: -50px;
        position: relative;
        z-index: 2;
    }

    .stats-card {
        max-width: 100%;
        margin: 0 15px;
    }

    .stats-header {
        width: 80%;
        max-width: 280px;
    }

    .stats-header h3 {
        font-size: 18px;
    }

    .stats-list {
        padding: 20px 25px;
    }

    .stat-item {
        margin-bottom: 12px;
    }

    .stat-label {
        font-size: 13px;
    }

    .stat-value {
        font-size: 22px;
    }

    .stats-note {
        font-size: 11px;
        padding: 14px 25px;
    }

    .parent-trust-section {
        padding: 40px 0;
    }

    .trust-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .trust-header .section-title {
        font-size: 22px;
        line-height: 1.25;
    }

    .section-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }

    .trust-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .trust-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .trust-card:nth-child(4) {
        margin: 0;
        grid-column: auto;
    }

    .trust-card {
        grid-column: auto;
        padding: 25px 20px;
    }

    .trust-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .trust-card p {
        font-size: 13px;
    }

    .trust-footer {
        font-size: 13px;
        margin-top: 30px;
        padding: 0 15px;
    }

    .section-title-center {
        font-size: 24px;
        line-height: 1.3;
    }

    .section-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .different-cards-grid,
    .crisis-stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .section-timing-wrapper {
        margin-top: 35px;
    }

    .timing-image {
        max-width: 450px;
    }

    .countdown-section .section-timing-wrapper {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .ecosystem-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ecosystem-image {
        height: auto;
    }

    .testimonials-wrapper {
        max-width: 100%;
    }

    .testimonial-content {
        min-height: auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 12px 0;
    }

    .logo-img {
        height: 50px;
    }

    .hero {
        padding: 25px 0 70px;
    }

    .hero-content {
        gap: 5px;
    }

    .hero-image-container {
        margin-top: 12px;
    }

    .form-section {
        margin-top: -50px;
    }

    .title-badge {
        font-size: 16px;
        padding: 6px 16px;
        border-bottom: 3px solid #d4a017;
        border-left: 3px solid #d4a017;
        border-right: 3px solid #d4a017;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 20px;
        font-style: italic;
    }

    .hero-description {
        font-size: 13px;
        padding: 0 10px;
    }

    .btn-webinar {
        font-size: 14px;
        padding: 12px 35px;
    }

    .webinar-note {
        margin: 0;
        padding: 0;
        font-size: 11px;
    }

    .hero-cta-wrapper {
        margin-bottom: 0;
        gap: 12px;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .cta-button-section {
        width: 100%;
        align-items: center;
    }

    .webinar-timing-box {
        width: 100%;
        min-width: auto;
        gap: 0;
    }

    .timing-label {
        font-size: 13px;
        padding: 9px 24px;
        margin: 0 0 -2px 0;
    }

    .timing-details {
        font-size: 11px;
        padding: 10px 16px 9px 16px;
        margin: 0 0 5px 0;
    }

    .hero-right {
        margin-top: 0;
    }

    .hero-main-img {
        max-width: 240px;
    }

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

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

    .trusted-by-section {
        padding: 20px 0;
    }

    .video-about-section {
        padding: 40px 0;
    }

    .video-about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .video-wrapper {
        border-radius: 12px;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .video-wrapper iframe {
        width: 100%;
        height: 100%;
    }

    .about-title {
        font-size: 24px;
    }

    .about-subtitle {
        font-size: 15px;
        margin: 12px 0 18px 0;
        line-height: 1.4;
    }

    .about-text {
        font-size: 12px;
        line-height: 1.7;
    }

    .trusted-title {
        margin-bottom: 15px;
        font-size: 12px;
    }

    .trusted-logos {
        gap: 15px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .trusted-logo-item {
        flex: 1;
        min-width: 0;
    }

    .trusted-logo-item img {
        height: 35px;
        max-width: 100%;
    }

    .trusted-stats {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        font-size: 10px;
        line-height: 1;
    }

    .stat-separator {
        font-size: 10px;
        line-height: 1;
    }

    .dropout-section {
        padding: 0 0 25px 0;
        min-height: auto;
        background: var(--white);
        position: relative;
    }

    .dropout-section::before {
        content: '';
        display: block;
        width: 100%;
        height: 220px;
        background: url('images/kids-playing.png') center/cover no-repeat;
    }

    .dropout-content {
        min-height: auto;
        padding-bottom: 0;
        margin-top: -45px;
        position: relative;
        z-index: 2;
    }

    .stats-card {
        margin: 0 10px;
    }

    .stats-header {
        width: 85%;
        max-width: 250px;
    }

    .stats-header h3 {
        font-size: 16px;
        line-height: 1.2;
    }

    .stats-list {
        padding: 18px 20px;
    }

    .stat-label {
        font-size: 12px;
    }

    .stat-value {
        font-size: 20px;
    }

    .stat-progress-bar {
        height: 18px;
    }

    .stats-note {
        font-size: 10px;
        padding: 12px 20px;
    }

    .parent-trust-section {
        padding: 35px 0;
    }

    .trust-header {
        margin-bottom: 25px;
    }

    .trust-header .section-title {
        font-size: 19px;
        line-height: 1.25;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .trust-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .trust-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .trust-card {
        padding: 20px 15px;
    }

    .trust-card h3 {
        font-size: 14px;
    }

    .trust-card p {
        font-size: 11px;
    }

    .trust-footer {
        font-size: 11px;
    }

    .section-title-center {
        font-size: 20px;
        line-height: 1.3;
    }

    .final-cta-content h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    .footer-main {
        grid-template-columns: 110px 1fr;
        gap: 20px 20px;
        padding: 35px 0 25px;
    }

    .footer-logo-section {
        grid-row: 1;
    }

    .footer-logo img {
        height: 110px;
    }

    .footer-links-section {
        grid-row: 1;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-contact-section {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .footer-contact-section h4 {
        font-size: 15px;
        margin-top: 18px;
    }

    .footer-contact li {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .footer-contact .contact-icon {
        width: 16px;
        height: 16px;
    }

    .footer-bottom-content p {
        font-size: 11px;
    }

    .whats-different-section,
    .silent-crisis-section {
        padding: 20px 0;
    }

    .different-card-item {
        padding: 30px 25px;
    }

    .section-timing-wrapper {
        margin-top: 30px;
    }

    .timing-image {
        max-width: 100%;
    }

    .countdown-section .section-timing-wrapper {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .stat-number {
        font-size: 48px;
    }

    .crisis-stat-card {
        padding: 30px 25px;
    }

    .chart-section {
        padding: 40px 0;
    }

    .chart-container {
        padding: 20px;
        border-radius: 20px;
    }

    .modern-partner-section {
        padding: 40px 0;
    }

    .partner-table-wrapper {
        border-radius: 15px;
    }

    .partner-table thead th {
        padding: 18px 15px;
        font-size: 16px;
    }

    .partner-table tbody tr {
        background: var(--bg-light);
    }

    .partner-table tbody td {
        padding: 15px;
        font-size: 14px;
    }

    .btn-cta-green {
        padding: 14px 35px;
        font-size: 15px;
    }

    .ecosystem-section {
        padding: 40px 0;
    }

    .ecosystem-footer p {
        font-size: 18px;
    }

    .ecosystem-footer {
        padding: 25px 30px;
    }

    .section-title-white {
        font-size: 28px;
    }

    .testimonials-section {
        padding: 40px 0;
    }

    .testimonial-content {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }

    .testimonial-quote {
        font-size: 16px;
    }

    .testimonial-author {
        font-size: 14px;
    }

    .countdown-section {
        padding: 35px 0;
    }

    .countdown-title {
        font-size: 22px;
        line-height: 1.3;
        padding: 0 10px;
    }

    .countdown-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 500px;
        margin: 0 auto 25px;
    }

    .countdown-feature {
        text-align: left;
        justify-content: flex-start;
        max-width: 100%;
    }

    .countdown-feature:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .countdown-feature p {
        font-size: 11px;
    }

    .feature-divider {
        font-size: 40px;
    }

    .countdown-timer {
        gap: 8px;
    }

    .timer-box {
        padding: 18px 12px;
        min-width: 65px;
        border-radius: 10px;
    }

    .timer-number {
        font-size: 32px;
    }

    .timer-label {
        font-size: 10px;
    }

    .btn-webinar-cta {
        padding: 12px 30px;
        font-size: 14px;
    }

    .countdown-disclaimer {
        font-size: 11px;
    }

    .faq-section {
        padding: 40px 0;
    }

    .faq-question {
        font-size: 14px;
    }

    .countdown-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .countdown-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 600px;
        margin: 0 auto 30px;
    }

    .countdown-feature {
        text-align: left;
        justify-content: flex-start;
        max-width: 100%;
    }

    .countdown-feature:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .feature-divider {
        font-size: 50px;
    }

    .countdown-timer {
        gap: 12px;
    }

    .timer-box {
        padding: 20px 18px;
        min-width: 70px;
        border-radius: 12px;
    }

    .timer-number {
        font-size: 36px;
    }

    .timer-label {
        font-size: 12px;
    }

    .btn-webinar-cta {
        padding: 14px 35px;
        font-size: 15px;
    }

    .faq-section {
        padding: 35px 0;
    }

    .faq-question {
        font-size: 15px;
    }

    .final-cta-section {
        padding: 40px 0;
    }

    .final-cta-content h2 {
        font-size: 20px;
    }

    .final-cta-content p {
        font-size: 14px;
    }

    .footer-main {
        grid-template-columns: 140px 1fr;
        gap: 30px 30px;
        text-align: left;
        padding: 40px 0 30px;
        align-items: start;
    }

    .footer-logo-section {
        justify-content: flex-start;
        grid-column: 1;
        grid-row: 1;
    }

    .footer-logo img {
        height: 140px;
    }

    .footer-links-section {
        justify-content: flex-start;
        grid-column: 2;
        grid-row: 1;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-links a::before {
        content: '• ';
        margin-right: 8px;
    }

    .footer-contact-section {
        text-align: left;
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .footer-contact-section h4 {
        font-size: 16px;
        margin-bottom: 15px;
        margin-top: 20px;
    }

    .footer-contact li {
        justify-content: flex-start;
        font-size: 13px;
        margin-bottom: 10px;
    }

    .footer-contact .contact-icon {
        width: 18px;
        height: 18px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .footer-bottom-content p {
        font-size: 12px;
    }

    .section-title {
        font-size: 20px;
        line-height: 1.3;
    }
}