.about-page {
    font-family: 'Manrope', sans-serif;
    color: #444;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero {
    text-align: center;
    padding: 60px 20px;
}

.hero-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 2rem;
    color: #222;
    margin-bottom: 25px;
    font-weight: 700;
}

.section-title.center {
    text-align: center;
    margin-bottom: 50px;
}

.grid-2-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.text-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
    font-size: 1rem;
}

.image-content img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-section {
    border-radius: 0;
}

.mission-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/about-mission.jpg');
    background-color: #333;
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    border-radius: 12px;
    color: white;
}

.mission-title {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.mission-desc {
    font-size: 1.2rem;
    color: #eee;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
}

.feature-text h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #222;
    font-weight: 600;
}

.feature-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cta-section {
    background-color: #f9f9f9;
    padding: 80px 0;
    text-align: center;
    border-radius: 12px;
}

.cta-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-primary {
    background: #764ba2;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.btn-primary:hover {
    opacity: 0.9;
    box-shadow: 0 4px 15px rgba(118, 75, 162, 0.4);
}

.btn-outline {
    background: white;
    color: #764ba2;
    border: 2px solid #764ba2;
}

.btn-outline:hover {
    background: #f0f0f0;
}

@media (max-width: 768px) {
    .grid-2-columns,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero {
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .mission-title {
        font-size: 1.8rem;
    }
    
    .mission-desc {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        box-sizing: border-box;
    }
}