/* Root variables for consistency */
:root {
    --primary-dark: #1a365d;
    --primary-blue: #2563eb;
    --accent-green: #10b981;
    --light-gray: #f8fafc;
    --dark-gray: #64748b;
    --white: #ffffff;
}

/* General resets */
body {
    font-family: 'Poppins', sans-serif;
    color: #334155;
    line-height: 1.7;
    background-color: var(--white);
}

/* Page Header */
.page-header {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--white), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Section */
.about-section img {
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
    font-size: 2rem;
    color: var(--primary-dark);
}

.about-section ul {
    padding-left: 0;
    list-style: none;
}

.about-section li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Mission & Vision Cards */
.bg-light {
    background-color: var(--light-gray) !important;
}

.bg-light h3 {
    color: var(--primary-blue);
}

/* Team Section */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 280px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }

    .about-section h2 {
        font-size: 1.5rem;
    }

    .card-img-top {
        height: 200px;
    }
}
