body {
    font-family: 'Nunito', sans-serif; /* Use Nunito font */
    background: url('../images/angelCloud5.png') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    margin: 0;
    padding: 0;
}

h2 {
    color: #5f4b8b;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
    padding: 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    h2 {
        font-size: 2.2rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.8rem;
    }
}

header {
    background: rgba(95, 75, 139, 0.7);
    color: #fff;
    padding: 1rem;
    text-align: center;
}

header .logo {
    display: block;
    margin: 0 auto;
    max-width: 200px;
    height: auto;
}

header h1 {
    font-size: 2.5rem;
    margin: 0.5rem 0;
}

header .subtitle {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

/* Sticky Navigation */
nav {
    background: rgba(95, 75, 139, 0.9);
    padding: 0.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Add padding to main content to account for sticky nav */
main {
    padding-top: 0;
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.nav-menu {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 0;
}

.nav-menu li {
    margin: 0 1rem;
}

.nav-menu li a {
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s, border-bottom 0.3s;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #f9d342;
    border-bottom: 2px solid #f9d342;
}

.banner {
    background: #f9d342;
    color: #333;
    text-align: center;
    padding: 0.1rem 0; /* Your original padding */
    margin: 0 auto; /* Center the banner and use your original margin */
    cursor: pointer;
    width: 30%; /* Set width to 30% */
    border-radius: 15px; /* Add rounded corners */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transition for hover effects */
}

.banner:hover {
    background-color: #ffcc00;
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.hero {
    text-align: center;
    padding: 3rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 1200px;
    width: calc(100% - 2rem);
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 2.8rem;
    color: #5f4b8b;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.4rem;
    margin: 1.5rem 0;
    color: #444;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero button {
    padding: 1rem 2rem; /* Make the button larger */
    font-size: 1.2rem; /* Increase the font size */
    background: #5f4b8b;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s; /* Smooth transition for hover effects */
}

.hero button:hover {
    background: #4e3b72;
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.hero-buttons .quiz-btn {
    background-color: #f9d342 !important;
    color: #333 !important;
}

.hero-buttons .quiz-btn:hover {
    background-color: #e0bc2d !important;
    transform: scale(1.05);
}

.hero-buttons .learn-more-btn {
    background-color: #5f4b8b !important;
    color: white !important;
}

.hero-buttons .learn-more-btn:hover {
    background-color: #4a3a6a !important;
    transform: scale(1.05);
}

.featured {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    width: calc(100% - 2rem);
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.featured .feature {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 2rem;
    margin: 0 0 2rem 0;
    width: 100%;
    box-sizing: border-box;
}

.featured .feature h2,
.featured .feature > h2,
.featured .feature section h2 {
    color: #5f4b8b;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    padding: 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.featured .feature h3 {
    color: #5f4b8b;
    font-size: 2rem;
    margin: 2rem 0 1.5rem;
    text-align: center;
    padding: 0 1rem;
}

.featured .feature p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    padding: 0 1rem;
}

.featured .feature ul {
    list-style-type: none;
    padding: 0 1rem;
    margin: 0 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.featured .feature ul li {
    background: rgba(95, 75, 139, 0.1);
    padding: 1rem;
    border-radius: 8px;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.4;
    width: 100%;
    box-sizing: border-box;
}

.featured .feature .video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #000;
}

.featured .feature .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.articles {
    display: flex;
    flex-direction: column;
}

.articles article {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.articles img {
    max-width: 100px;
    margin-right: 1rem;
    border-radius: 8px;
}

.articles h4 {
    margin: 0;
}

.articles p {
    margin: 0.5rem 0 0 0;
}

footer {
    text-align: left;
    padding: 1rem 2rem;
    background: #5f4b8b;
    color: #fff;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-menu {
    margin: 0;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #f9d342;
}

/* Mobile Styles */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }

    header .subtitle {
        font-size: 1.2rem;
    }

    nav {
        padding: 0.3rem;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 0.3rem 0;
    }

    nav ul li a {
        font-size: 1rem;
    }

    .banner {
        width: 80%;
        padding: 0.5rem;
    }

    .hero {
        padding: 1rem;
        margin: 1rem;
        width: calc(100% - 2rem);
    }

    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: 0.05rem;
    }

    .hero p {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .hero button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .featured {
        flex-direction: column;
        align-items: center;
        flex-wrap: nowrap;
        width: calc(100% - 2rem);
    }

    .featured .feature {
        width: 100%;
    }

    .articles img {
        max-width: 80px;
    }

    footer {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-menu ul {
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0 1rem;
    }

    .learn-more-btn, .quiz-btn {
        width: 100%;
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
    }

    main {
        padding-top: 0;
    }

    .hamburger-menu {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(95, 75, 139, 0.95);
        flex-direction: column;
        align-items: center;
        padding-top: 60px;
        transition: right 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu li a {
        font-size: 1.2rem;
    }

    /* Hamburger menu animation */
    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .featured .feature h2,
    .featured .feature > h2,
    .featured .feature section h2 {
        font-size: 2.5rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero, .featured, .video-section, .faq, .popular-numbers {
        padding: 0.8rem;
        margin: 0.5rem;
        width: calc(100% - 1rem);
    }

    .featured .feature h2,
    .featured .feature > h2,
    .featured .feature section h2 {
        font-size: 2rem;
    }
}

/* Content Sections Styles */
.content-section {
    text-align: left;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    margin: 1rem;
    max-width: 1000px;
    margin: 1rem auto;
}

.content-section h1 {
    font-size: 2.5rem;
    color: #5f4b8b;
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.content-section h3 {
    color: #5f4b8b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.content-section p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.content-section ul {
    list-style-type: disc;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.content-section ul li {
    color: #333;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.content-section a {
    color: #5f4b8b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-section a:hover {
    color: #4e3b72;
    text-decoration: underline;
}

.content-section .team-member {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-section .team-member h4 {
    color: #5f4b8b;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.content-section .team-member p {
    color: #666;
    margin-bottom: 0;
    font-size: 1rem;
}

.closing-note {
    font-style: italic;
    color: #666;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(95, 75, 139, 0.2);
}

/* Responsive Design for Content Sections */
@media (max-width: 768px) {
    .content-section {
        padding: 1rem;
        margin: 0.5rem;
    }

    .content-section h1 {
        font-size: 2rem;
    }

    .content-section h3 {
        font-size: 1.2rem;
    }

    .content-section p,
    .content-section ul li {
        font-size: 1rem;
    }

    .content-section .team-member {
        padding: 1rem;
    }
}

/* Contact Form Styles */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    margin: 1rem auto;
}

.contact-grid > h3,
.contact-grid > p {
    grid-column: 1 / -1;
    color: #5f4b8b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-grid > p {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.contact-form h3 {
    color: #5f4b8b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-form p {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #5f4b8b;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #5f4b8b;
    box-shadow: 0 0 0 2px rgba(95, 75, 139, 0.2);
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    color: #333;
}

.submit-btn {
    background: #5f4b8b;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #4e3b72;
    transform: translateY(-2px);
}

.required::after {
    content: "*";
    color: #e74c3c;
    margin-left: 4px;
}

.contact-grid .closing-note {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: #666;
    padding-top: 1rem;
    border-top: 1px solid rgba(95, 75, 139, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
        margin: 0.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
    }

    .contact-grid > h3 {
        font-size: 1.2rem;
    }

    .contact-grid > p {
        font-size: 1rem;
    }
}

/* About Page Styles */
.about-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.about-section h3 {
    color: #5f4b8b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-section p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-section ul {
    list-style-type: disc;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.about-section ul li {
    color: #333;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.about-section .team-member {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-section .team-member h4 {
    color: #5f4b8b;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.about-section .team-member p {
    color: #666;
    margin-bottom: 0;
    font-size: 1rem;
}

.about-section .closing-note {
    font-style: italic;
    color: #666;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(95, 75, 139, 0.2);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-section {
        padding: 1rem;
    }

    .about-section h3 {
        font-size: 1.3rem;
    }

    .about-section p,
    .about-section ul li {
        font-size: 1rem;
    }

    .about-section .team-member {
        padding: 1rem;
    }
}

/* FAQ Styles */
.faq {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    width: calc(100% - 2rem);
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: #5f4b8b;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-item h2 {
    margin: 0;
    padding: 1rem;
    background-color: rgba(95, 75, 139, 0.1);
    cursor: pointer;
    position: relative;
    font-size: 1.2rem;
    color: #333;
    transition: background-color 0.3s ease;
}

.faq-item h2:hover {
    background-color: rgba(95, 75, 139, 0.2);
}

.faq-item h2::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #5f4b8b;
    transition: transform 0.3s ease;
}

.faq-item.active h2::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 1rem;
    background-color: rgba(95, 75, 139, 0.05);
    border-top: 1px solid #ddd;
}

.faq-answer p {
    margin: 0 0 1rem 0;
    line-height: 1.6;
    color: #444;
}

.faq-answer ul {
    margin: 0 0 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #444;
}

@media (max-width: 768px) {
    .faq {
        padding: 1rem;
        margin: 1rem;
    }

    .faq h1 {
        font-size: 2rem;
    }

    .faq-item h2 {
        font-size: 1.1rem;
        padding: 0.8rem;
    }
}

/* Video Section Styles */
.video-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    text-align: center;
    width: calc(100% - 2rem);
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-section h2 {
    color: #5f4b8b;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto 2rem;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .featured .feature h2 {
        font-size: 2.5rem;
        padding: 0 0.5rem;
    }

    .featured .feature .video-container {
        margin: 1.5rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .featured .feature h2 {
        font-size: 2rem;
    }
}

/* Popular Numbers Section */
.popular-numbers {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    text-align: center;
    width: calc(100% - 2rem);
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.popular-numbers h2 {
    color: #5f4b8b;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.popular-numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.popular-number-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: block;
}

.popular-number-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.popular-number-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid rgba(95, 75, 139, 0.1);
}

.popular-number-card h3 {
    color: #5f4b8b;
    padding: 1rem;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.popular-number-card p {
    padding: 0 1rem 1.5rem;
    margin: 0;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .popular-numbers {
        padding: 1rem;
        margin: 1rem;
    }

    .popular-numbers h2 {
        font-size: 2rem;
    }

    .popular-numbers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .popular-number-card img {
        height: 180px;
    }

    .popular-number-card h3 {
        font-size: 1.5rem;
    }

    .popular-number-card p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero, .featured, .video-section, .faq, .popular-numbers {
        padding: 1rem;
        margin: 1rem;
        width: calc(100% - 2rem);
    }
}