/* static/css/about.css */
/* About Us Container */
.about-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1rem 2rem;
}

.about-container h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-container h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.about-container p {
    margin-bottom: 1rem;
    color: #566573;
    line-height: 1.7;
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: center;
}

.about-hero-content h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1rem;
    border: none;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

/* Mission and Story Sections */
.mission, .story {
    margin-bottom: 3rem;
    padding: 0 1rem;
}

/* Team Section */
.team {
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
}

.team-member h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.role {
    color: #2575fc !important;
    font-weight: 600;
    margin-bottom: 1rem !important;
    font-size: 1rem;
}

/* Values Section */
.values {
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.value-item h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    color: #2575fc;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 2rem 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1.5rem;
    text-align: center;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffdd40;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffdd40;
}

.footer-section p {
    color: #ecf0f1;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffdd40;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #3a506b;
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .footer-section {
        flex: 1;
        padding: 0 1rem;
    }
}

@media (max-width: 767px) {
    .about-container {
        padding: 1rem;
    }
    
    .about-hero {
        padding: 2rem 1rem;
    }
    
    .about-hero-content h2 {
        font-size: 1.8rem;
    }
    
    .about-container h1 {
        font-size: 2rem;
    }
    
    .about-container h2 {
        font-size: 1.5rem;
    }
    
    .team-member, .value-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-container h1 {
        font-size: 1.8rem;
    }
    
    .about-hero-content h2 {
        font-size: 1.5rem;
    }
    
    .about-container h2 {
        font-size: 1.3rem;
    }
    
    .member-image {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
}