body {
    font-family: 'Nunito', sans-serif;
    scroll-behavior: smooth;
    color: #333;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}
.bg-primary {
    background-color: #1E88E5;
}
.bg-secondary {
    background-color: #FFC107;
}
.text-primary {
    color: #1E88E5;
}
.text-secondary {
    color: #FFC107;
}
.btn-primary {
    background-color: #1E88E5;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}
.btn-primary:hover {
    background-color: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn-secondary {
    background-color: #FFC107;
    color: #333;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}
.btn-secondary:hover {
    background-color: #FFA000;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.feature-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.benefit-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    background: white;
}
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.course-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}
.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.story-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}
.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.faq-item {
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s;
}
.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.nav-transparent {
    background-color: transparent;
    box-shadow: none;
}
section {
    padding: 80px 0;
}
.section-title {
    position: relative;
    margin-bottom: 3rem;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFC107;
    border-radius: 2px;
}
.reveal-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal-section.revealed {
    opacity: 1;
    transform: translateY(0);
}
.bee-icon {
    position: relative;
    display: inline-block;
}
.bee-icon:before {
    content: '🐝';
    position: absolute;
    font-size: 24px;
    top: -15px;
    left: -15px;
}
@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
    .mobile-nav {
        position: fixed;
        top: 80px; /* Adjusted to be below the header */
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        padding: 1rem;
        transform: translateY(-150%); /* Start off-screen, adjusted for possible header height */
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }
    .mobile-nav.active {
        transform: translateY(0);
    }
    .mobile-nav-link {
        display: block;
        padding: 0.5rem 0;
        text-align: center;
        font-weight: 600;
    }
    /* Ensure header height consistency for mobile nav positioning */
    #header {
        height: 80px; /* Example fixed height, adjust as needed */
    }
}