:root {
    --primary-color: #FDCD0B;
    --secondary-color: #000000;
    --text-color: #333333;
    --light-bg: #f5f5f5;
    --charcoal-bg: #3a3a3a;
}

body, html {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: var(--text-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondary-color);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

nav ul {
    padding: 0;
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section Styles */
.hero {
    background: linear-gradient(rgba(253, 205, 11, 0.8), rgba(253, 205, 11, 0.8)), url('/images/hero-educators.jpg') no-repeat center center;
    background-size: cover;
    color: var(--secondary-color);
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Button Styles */
.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background: white;
    color: var(--secondary-color);
}

/* Section Styles */
.features, .testimonials, .user-groups {
    padding: 3rem 0;
    text-align: center;
}

.features, .testimonials {
    background: var(--light-bg);
}

/* Educators Section Styles */
.educators {
    padding: 3rem 0;
}

.educator-section {
    margin-bottom: 2rem;
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.educator-section h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.educator-section p {
    margin-bottom: 1rem;
}

/* Educator Resources Styles */
.educator-resources {
    padding: 3rem 0;
    background: var(--light-bg);
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-item {
    padding: 2rem;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.resource-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Professional Development Section Styles */
.professional-development {
    padding: 3rem 0;
    text-align: left;
}

.professional-development h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.professional-development ul {
    list-style-type: disc;
    padding-left: 20px;
}

.professional-development li {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-color);
}

/* Success Stories Section Styles */
.success-stories {
    padding: 3rem 0;
    background: var(--light-bg);
    text-align: center;
}

.success-stories h2 {
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

/* Footer Styles */
footer {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 3rem 0;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    margin-bottom: 1rem;
    min-width: 200px;
    text-align: center;
}

.footer-column h3 {
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icons a {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #ffffff33;
}

/* Media Queries */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background: rgba(255, 255, 255, 0.9);
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        text-align: center;
        padding: 10px 0;
        margin-left: 0;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-column {
        width: 100%;
    }
}
