:root {
    --primary-color: #1a2b49; /* Dark Blue from reference */
    --secondary-color: #2c3e50; /* Slightly lighter dark blue */
    --accent-color: #a4c639; /* Lime Green from reference */
    --accent-hover: #8ea832;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
    --radius: 12px; /* More rounded as per reference */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-tag, .section-tag-hero, .section-tag-center {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.section-tag-center {
    text-align: center;
}

.section-tag-hero {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
.header {
    background-color: var(--white);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.countdown-bar {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.countdown-bar i {
    color: var(--secondary-color);
    margin-right: 5px;
}

#countdown {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-left: 5px;
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, rgba(26, 43, 73, 0.9) 0%, rgba(15, 26, 46, 0.95) 100%), url('../hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax effect */
    color: var(--white);
    padding: 100px 0; /* Increased padding */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(164, 198, 57, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
    margin-bottom: 40px;
}

.hero-logo {
    display: block;
    max-width: 180px;
    margin-bottom: 20px;
    height: auto;
}

.hero-text .tag {
    display: none; /* Replaced by section-tag-hero */
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-text h1 .highlight {
    color: var(--accent-color); /* Lime Green */
}

.hero-date-highlight {
    display: inline-block;
    background-color: rgba(164, 198, 57, 0.2); /* Accent color with opacity */
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.hero-date-highlight i {
    margin-right: 10px;
}

.hero-text .subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 15px;
    opacity: 0.9;
    max-width: 500px;
}

/* Hero Form */
.hero-form-wrapper {
    flex: 0 0 450px; /* Slightly wider */
    max-width: 100%;
}

.form-box {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2); /* Stronger shadow */
    color: var(--text-dark);
    border-top: 5px solid var(--accent-color);
    position: relative;
    z-index: 10;
}

.form-box h3 {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.form-box p {
    text-align: left;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: #f9f9f9;
}

.input-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: #fff;
}

.btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--accent-color); /* Lime Green */
    color: var(--primary-color); /* Dark text on lime button */
    padding: 15px 25px;
    border-radius: 4px;
    font-weight: 800;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap; /* Prevent line break */
}

.btn-text-mobile {
    display: none;
}

.btn-cta:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .btn-cta {
        font-size: 0.9rem; /* Adjusted font size */
        padding: 15px 20px; /* Restore padding */
    }
    
    .btn-text-desktop {
        display: none;
    }
    
    .btn-text-mobile {
        display: inline;
    }
}

/* About Section Layout */
.about {
    padding: 100px 0;
    background-color: #f9fbfd;
    background-image: radial-gradient(#e1e8ed 1px, transparent 1px);
    background-size: 20px 20px;
}

.about-grid-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

.check-list {
    margin-top: 30px;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.check-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.check-list li i {
    color: var(--accent-color);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1.1rem;
}

.why-participate-card {
    background-color: #f0f4f8; /* Light grey/blue */
    padding: 30px;
    border-radius: var(--radius);
    border-left: 5px solid var(--accent-color);
}

.why-participate-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-participate-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Professor Section */
.professor-section {
    background-color: var(--white);
    padding: 100px 0;
    border-top: 1px solid #eee;
}

.professor-bio-card {
    background-color: transparent;
    padding: 0;
}

.professor-bio-card ul {
    margin: 20px 0;
    padding-left: 20px;
    list-style-type: disc;
    color: var(--text-light);
}

.professor-bio-card .bio-footer {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.professor-image-wrapper {
    display: flex;
    justify-content: center;
}

.professor-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* Details Section (Dark Card) */
.details-section {
    padding: 40px 0;
    background-color: var(--white);
}

.details-card-dark {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c3e50 100%);
    border-radius: var(--radius);
    padding: 50px;
    color: var(--white);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.details-card-dark::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(to left, rgba(255,255,255,0.05), transparent);
    pointer-events: none;
}

.details-header h3 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.8rem;
}

.details-header p {
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.details-grid-dark {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.detail-item-dark {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-item-dark i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.detail-item-dark span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* GovPlan Modern List */
.feature-list-modern {
    margin-top: 30px;
}

.feature-list-modern li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-list-modern .icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(164, 198, 57, 0.2); /* Light accent */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-hover);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-list-modern strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.feature-list-modern p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Audience Section Dark */
.audience {
    background-color: var(--primary-color);
    color: var(--white);
}

.text-white {
    color: var(--white) !important;
}

.audience-item {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.audience-item i {
    color: var(--accent-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .details-card-dark {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .details-grid-dark {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
}
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Hero Form */
.hero-form-wrapper {
    flex: 0 0 400px;
    max-width: 100%;
}

.form-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
}

.form-box h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.form-box p {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.input-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: var(--white);
    color: var(--text-dark);
    appearance: none; /* Remove default arrow */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.input-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 700;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.privacy-text {
    font-size: 0.8rem !important;
    margin-top: 15px;
    margin-bottom: 0 !important;
    opacity: 0.7;
}

/* Details Bar */
.details-bar {
    background-color: var(--bg-light);
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 15px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 15px;
}

.detail-item h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
    color: var(--text-light);
    text-transform: uppercase;
}

.detail-item p {
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

/* Sections General */
.section {
    padding: 80px 0;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-header h2 {
    font-size: 2.2rem; /* Standardized size */
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* About Section */
.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.learning-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid transparent;
}

.learning-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--secondary-color);
}

.learning-card i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.learning-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.learning-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.highlight-card {
    background-color: #e3f2fd; /* Light blue bg */
    border: 1px solid #bbdefb;
}

.highlight-card i {
    color: var(--primary-color);
}

/* GovPlan Section */
.govplan-section {
    background-color: var(--white);
    position: relative;
}

.govplan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    z-index: 0;
}

.govplan-layout-single {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.video-container-centered {
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.text-content-centered {
    text-align: center;
}

.text-content-centered h2 {
    margin-bottom: 20px;
}

.icon-list-centered {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    text-align: left;
}

.icon-list-centered li {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
    flex: 1 1 400px; /* Responsive width */
    max-width: 600px;
    border: 1px solid transparent;
}

.icon-list-centered li:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.icon-list-centered li i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.section-tag {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.lead {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.feature-list li i {
    color: var(--accent-color);
    margin-right: 10px;
    margin-top: 5px;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    margin-top: 20px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    background-color: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Audience Section */
.audience-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.audience-item {
    background-color: var(--white);
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid #eee;
}

.audience-item i {
    margin-right: 10px;
    color: var(--secondary-color);
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.contact-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-light);
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
    text-align: center;
    border-top: 5px solid var(--secondary-color);
}

.footer-logo h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-logo-img {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.footer-info p {
    opacity: 0.6;
    font-size: 0.85rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f1a2e 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-box h2 {
    color: var(--accent-color);
    font-size: 2.2rem; /* Standardized size */
    margin-bottom: 20px;
    /* text-transform: uppercase; Removed to match other sections */
}

.cta-box p, 
.cta-box .lead {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    color: var(--white);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
    display: inline-block;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .two-col-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-right: 0;
        text-align: center;
    }

    .hero-logo {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-text .tag {
        margin: 0 auto 20px;
    }
    
    .hero-text .description {
        margin: 0 auto 30px;
    }
    
    .professor-preview {
        margin: 0 auto;
    }
    
    .hero-form-wrapper {
        width: 100%;
    }

    /* Center all elements in mobile */
    .about-content,
    .professor-section .text-content,
    .details-card-dark,
    .section-header,
    .contact-grid {
        text-align: center;
        align-items: center;
    }

    .check-list, 
    .professor-bio-card ul {
        display: inline-block;
        text-align: left; /* Keep list items readable */
        margin: 20px auto;
    }

    .professor-image-wrapper {
        margin: 0 auto 30px;
    }

    /* Reorder Professor Section on Mobile */
    .professor-section .two-col-grid .image-content {
        order: -1;
    }

    .details-card-dark {
        flex-direction: column;
        padding: 20px;
    }

    .details-grid-dark {
        width: 100%;
        justify-items: center;
    }

    .detail-item-dark {
        justify-content: center;
        width: 100%;
    }
}

/* Highlight Box Centered (Dark Section) */
.highlight-box-centered {
    margin-top: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-box-centered p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
}

/* Benefits Centered Layout */
.benefits-layout {
    display: flex;
    justify-content: center;
    width: 100%;
}

.benefits-content {
    max-width: 800px;
    width: 100%;
}

.text-center {
    text-align: center;
}

.benefits-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefits-list li {
    background: var(--white);
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 0; /* Override default */
}

.benefits-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.govplan-highlight-centered {
    background: #f0f4f8;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    border-left: 5px solid var(--primary-color);
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

/* Privacy Notice Styles */
.privacy-notice {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    text-align: center;
}

.form-box .privacy-notice .privacy-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-box .privacy-notice .privacy-text {
    font-size: 0.7rem;
    color: #888;
    line-height: 1.4;
    margin-bottom: 0;
    text-align: center;
}

/* Chapter List Styles */
.chapter-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    padding: 0;
    list-style: none;
    margin-top: 30px;
    margin-bottom: 30px;
}

.chapter-list li {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease;
}

.chapter-list li:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: rgba(164, 198, 57, 0.3);
}

.chapter-icon {
    background-color: #3498db; /* Lighter blue for the icon box */
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.chapter-icon i {
    color: var(--white);
}

/* Event LP Updates */
.hero-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.event-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.92rem;
}

.event-meta-item i {
    color: var(--accent-color);
}

.event-details-bar .detail-item {
    border-left: 4px solid var(--accent-color);
}

.event-about {
    background-color: #f9fbfd;
}

.event-grid {
    align-items: start;
}

.event-alert {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    padding: 20px;
    background: var(--white);
    border-left: 5px solid var(--accent-color);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.event-alert i {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-top: 3px;
}

.event-alert p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 600;
}

.event-topic-card,
.speaker-card,
.speaker-bio {
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    padding: 34px;
}

.event-topic-card {
    border-top: 5px solid var(--primary-color);
}

.event-topic-list {
    margin: 25px 0 30px;
}

.event-topic-list li {
    box-shadow: none;
    border: 1px solid #edf1f4;
    padding: 13px 15px;
}

.speaker-section {
    background: var(--white);
}

.speaker-profile-card {
    display: grid;
    gap: 18px;
}

.speaker-photo-frame {
    min-height: 380px;
    border-radius: 8px;
    background-color: #edf2f7;
    background-image: linear-gradient(135deg, #edf2f7 0%, #dce5ec 100%);
    border: 1px solid #dce5ec;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.speaker-photo-frame img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    object-position: center top;
}

.speaker-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #263e66 100%);
    color: var(--white);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.speaker-profile-card .speaker-card {
    min-height: auto;
}

.speaker-card h2,
.speaker-card .lead {
    color: var(--white);
}

.speaker-card .section-tag {
    color: var(--accent-color);
}

.speaker-bio {
    border-left: 5px solid var(--accent-color);
}

.speaker-bio p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.speaker-bio .btn-cta {
    margin-top: 12px;
}

@media (max-width: 768px) {
    .hero-event-meta {
        justify-content: center;
    }

    .event-meta-item {
        width: 100%;
        justify-content: center;
    }

    .event-alert {
        text-align: left;
    }

    .event-topic-card,
    .speaker-card,
    .speaker-bio {
        padding: 24px;
    }

    .speaker-photo-frame {
        min-height: 320px;
    }
}
