/* ========================================
   ABOUT PAGE SPECIFIC STYLES
   ========================================
   This file contains styles specific to the about.html page.
   These styles complement the main styles.css file.
   ======================================== */

/* Hero section styling for the about page */
.about-hero {
    background: linear-gradient(135deg, #6383A0 0%, #4a6280 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

/* Main content area spacing */
.about-content {
    padding: 60px 0;
}

/* Individual sections within the about page */
.about-section {
    margin-bottom: 60px; /* Provides spacing between sections */
}

/* Section headings styling */
.about-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

/* Section paragraph text styling */
.about-section p {
    font-size: 16px;
    line-height: 1.8; /* Improved readability with increased line height */
    color: #555;
    margin-bottom: 20px;
}

/* ========================================
   STATISTICS GRID SECTION
   ======================================== */

/* Grid layout for statistics display */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid that adapts to screen size */
    gap: 30px;
    margin: 40px 0;
}

/* Individual statistic item styling */
.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa; /* Light background for visual separation */
    border-radius: 10px;
}

/* Large number display for statistics */
.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #6383A0; /* Brand color for consistency */
    margin-bottom: 10px;
}

/* Label text for statistics */
.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px; /* Improved readability with letter spacing */
}

/* ========================================
   TEAM MEMBERS SECTION
   ======================================== */

/* Grid layout for team members display */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid for team cards */
    gap: 30px;
    margin: 40px 0;
}

/* Individual team member card styling */
.team-member {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Subtle shadow for depth */
}

/* Circular avatar placeholder for team members */
.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%; /* Creates circular shape */
    background: #6383A0; /* Brand color background */
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    font-weight: bold;
}

/* Team member name styling */
.team-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

/* Team member role/title styling */
.team-role {
    font-size: 14px;
    color: #6383A0; /* Brand color for consistency */
    margin-bottom: 15px;
}

/* Team member bio/description styling */
.team-bio {
    font-size: 14px;
    color: #666;
    line-height: 1.6; /* Improved readability */
} 