/* About Us Page Specific Styles */
.about-container {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-container h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.intro-text {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 40px;
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.hero-image {
    background-color: #f0f4f8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.image-placeholder {
    font-size: 80px;
    opacity: 0.3;
}

.features-section {
    margin: 80px 0;
}

.features-section h2,
.team-section h2,
.values-section h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

.team-section {
    margin: 80px 0;
}

.team-section p {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.7;
    color: #555;
    font-size: 1.05rem;
}

.milestones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.milestone {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.year {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 10px;
}

.description {
    color: var(--gray);
    line-height: 1.6;
}

.values-section {
    margin: 80px 0 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.value-card p {
    color: var(--gray);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .features-grid,
    .values-grid,
    .milestones {
        grid-template-columns: 1fr;
    }
    
    .about-hero {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        height: 200px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-container {
        padding: 40px 15px;
    }
    
    .about-container h1 {
        font-size: 2rem;
    }
    
    .features-section h2,
    .team-section h2,
    .values-section h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
}