/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f7f8fa;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    color: #2a2a2a;
}

/* Main Layout */
.main-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.site-header {
    background-color: #2a2a2a;
    padding: 15px;
    color: white;
}

.nav-list {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 20px;
}

    .nav-list li {
        font-size: 1.1em;
    }

    .nav-list a {
        color: white;
        text-decoration: none;
        transition: color 0.3s;
    }

        .nav-list a:hover {
            color: #00aaff;
        }

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #ddd;
    padding: 20px 0;
    font-size: 0.85em;
    text-align: center;
    border-top: 1px solid #444;
}

/* Hero Section */
.hero {
    background-image: url('/img/team_2024.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
}

    .hero-content h1 {
        font-size: 3em;
        font-weight: bold;
        margin-bottom: 0.5em;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    }

    .hero-content p {
        font-size: 1.2em;
        margin-bottom: 1.5em;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .hero-content button {
        padding: 12px 24px;
        font-size: 1.1em;
        color: white;
        background-color: #007acc;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
    }

        .hero-content button:hover {
            background-color: #005fa3;
            transform: translateY(-2px);
        }

/* Card Component */
.card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .card:hover {
        transform: scale(1.03);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .card h3 {
        font-size: 1.2em;
        color: #333;
        margin-bottom: 5px;
    }

    .card p {
        color: #666;
    }

/* Announcements and Events Sections */
.announcements, .events {
    padding: 20px;
    background-color: #f0f4f8;
    border-radius: 8px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .contact-form .form-group {
        margin-bottom: 15px;
    }

    .contact-form label {
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
        color: #333;
    }

    .contact-form input, .contact-form textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 1em;
    }

    .contact-form button {
        padding: 10px 20px;
        font-size: 1em;
        color: white;
        background-color: #007acc;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        .contact-form button:hover {
            background-color: #005fa3;
        }

/* Quick Links */
.quick-links a {
    display: inline-block;
    background-color: #007acc;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

    .quick-links a:hover {
        background-color: #005fa3;
    }

/* FAQs */
.faq-item {
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

    .faq-item h3 {
        font-size: 1.2em;
        color: #333;
        cursor: pointer;
    }

    .faq-item p {
        display: none; /* Toggle with JavaScript for accordion effect */
    }
