/* Base Styles - Matches index.css exactly */
:root {
    --primary: #007bff;
    --primary-dark: #0056b3;
    --primary-light: #e7f1ff;
    --accent: #ffcc00;
    --light: #f8f9fa;
    --dark: #343a40;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
h1 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
    font-size: 2rem;
}
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styles 
header {
    background: var(--primary);
    color: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: static;
    top: 0;
    z-index: 1000;
}

.header-left {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.logo {
    height: 40px;
    width: auto;
    transition: var(--transition);
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

nav a:hover {
    color: var(--accent);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.logo-divider {
    height: 30px;
    width: 2px;
    background: rgba(255,255,255,0.5);
}

/* Button Styles - Matches index.css exactly */
button {
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--border-radius);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

#refresh-button {
    padding: 0.5rem 1rem;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 0.9rem;
}

#refresh-button:hover {
    background-color: rgba(255,255,255,0.2);
}

/* Hero Section - Matches index.css exactly */
.hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
    padding: 3rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

/* About Content Styles */
.about-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.content-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.content-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.mission-highlight {
    background-color: rgba(0, 123, 255, 0.1);
    padding: 1.5rem;
    border-left: 4px solid var(--primary);
    margin: 2rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.mission-highlight p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
}

h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
}

ul {
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA Button - Matches index.css buttons */
.cta-container {
    text-align: center;
    margin: 2rem 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    gap: 0.5rem;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Team Section */
.team-section {
    margin: 3rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.team-member {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--accent);
}

.team-member h3 {
    color: var(--primary-dark);
    margin: 0.5rem 0;
    font-size: 1.2rem;
}

.team-member p {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.team-contact-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.team-contact-button:hover {
    background-color: var(--primary);
    color: white;
}

/* Footer - Simplified */
footer {
    background: var(--dark);
    color: #fff;
    margin-top: auto;
}

.footer-bottom {
    text-align: center;
    padding: 1rem;
    background-color: rgba(0,0,0,0.2);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

/* Responsive Styles - Matches index.css exactly */
/* Standardized Header Styles to match index.css */

/* Header Styles */
header {
    background: var(--primary);
    color: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: static;
    top: 0;
    z-index: 1000;
}

.header-left {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.logo {
    height: 40px;
    width: auto;
    transition: var(--transition);
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

nav a:hover {
    color: var(--accent);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.logo-divider {
    height: 30px;
    width: 2px;
    background: rgba(255,255,255,0.5);
}

/* Responsive header styles */
@media (max-width: 768px) {
    header {
        position: static;
        flex-direction: column;
        height: auto;
        padding: 10px;
    }

    .header-left {
        width: 100%;
        justify-content: space-between;
    }
    
    header img.logo {
        max-width: 80px;
    }
    
    .logo-divider {
        display: none;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        padding: 0.5rem 0;
    }
    
    nav ul li a {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .header-left {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    nav ul {
        gap: 0.5rem;
    }
    
    nav ul li a {
        font-size: 0.8rem;
    }
}