/*
 * Base Styles and Typography
 */
body {
    font-family: 'Roboto Condensed', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ecf0f1;
    color: #2c3e50;
    line-height: 1.6;
    box-sizing: border-box;
    overflow-y: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/*
 * Hero Section
 */
.hero-about {
    position: relative;
    background: linear-gradient(135deg, #3004E1, #A601B3);
    color: #ecf0f1;
    padding: 80px 20px;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1;
}

.hero-about h1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 3.5em;
    font-weight: 700;
    margin: 0 0 15px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-about p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/*
 * Purpose Section
 */
.purpose-section {
    padding: 50px 0;
    position: relative;
    z-index: 2;
}

.purpose-section h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2.8em;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin: 0 0 15px;
}

.purpose-section .purpose-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.purpose-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.purpose-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-bottom: 5px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-bottom-color 0.3s ease;
}

.purpose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    border-bottom-color: #A601B3;
}

.purpose-card i {
    font-size: 3.2em;
    color: #141443;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.purpose-card:hover i {
    color: #A601B3;
}

.purpose-card h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.6em;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px;
}

.purpose-card p {
    font-size: 1em;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

/*
 * Team Section
 */
.team-section {
    padding: 50px 0;
    text-align: center;
}

.team-section h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2.8em;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 40px;
}

.team-section .team-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member-card {
    background-color: #fff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.team-member-card img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #A60AB3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.team-member-card h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px;
}

.team-member-card p {
    font-size: 1em;
    color: #777;
    margin: 0 0 20px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.member-social a {
    color: #A60AB3;
    font-size: 1.3em;
    transition: transform 0.3s ease, color 0.3s ease;
}

.member-social a:hover {
    transform: scale(1.1);
    color: #141443;
}

/*
 * Responsive Adjustments
 */
@media (max-width: 768px) {
    .hero-about {
        padding: 60px 15px;
    }

    .hero-about h1 {
        font-size: 2.5em;
    }

    .hero-about p {
        font-size: 1.1em;
    }

    .purpose-cards-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .purpose-card,
    .team-member-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero-about h1 {
        font-size: 2em;
    }

    .hero-about p {
        font-size: 1em;
    }

    .purpose-card,
    .team-member-card {
        padding: 20px;
    }
}