/* Color Variables */
:root {
    --primary-color: #FF6B35;
    --primary-dark: #E85826;
    --primary-light: #FF8659;
    --secondary-color: #2EC4B6;
    --accent-color: #FF9F1C;
    --text-color: #1B1B1E;
    --text-light: #4A4A4D;
    --background: #ffffff;
    --background-light: #F7F9FC;
    --background-dark: #E9EDF5;
    --border-color: #E2E8F0;
    --success-color: #20BF55;
    --warning-color: #F7B538;
    --error-color: #E63946;
    --gradient-start: var(--primary-color);
    --gradient-end: var(--accent-color);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Content Section */
.about-content {
    padding: 60px 0;
    background: var(--background);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    margin-top: 40px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 760px;
}

/* Values List */
.values-list {
    list-style: none;
    margin-top: 30px;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    background: var(--background-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.values-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.values-list i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-right: 15px;
    background: var(--background);
    padding: 12px;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.values-list h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.values-list p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-light);
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
    height: 60px;
}

.stat-card {
    background: var(--background);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-card h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.stat-card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background: var(--background-light);
}

.team-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: var(--background);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    max-width: 280px;
    margin: 0 auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    

}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.position {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 12px;
    display: block;
}

.member-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .member-image {
        height: 200px;
    }
    
    .stat-card {
        min-height: 120px;
        padding: 20px;
    }
    
    .stat-card h3 {
        font-size: 1.8rem;
    }
    
    .values-list li {
        padding: 12px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card,
.team-member,
.values-list li {
    animation: fadeIn 0.5s ease-out forwards;
}