/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero / Header (Renamed from .header) */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px 60px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Logo in hero (if needed, but header.php has logo) */
.about-hero .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.about-hero .logo-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 24px;
    color: #667eea;
    margin-right: 12px;
}

.about-hero .logo-text {
    font-size: 28px;
    font-weight: 700;
}

/* Our Story Section */
.story-section {
    padding: 80px 20px;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1F2937;
}

.story-text p {
    font-size: 18px;
    color: #4B5563;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image {
    position: relative;
    height: 450px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image-placeholder {
    color: white;
    font-size: 100px;
    opacity: 0.3;
}

/* Mission & Vision Section */
.mission-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.mission-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 25px;
}

.mission-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1F2937;
}

.mission-card p {
    font-size: 17px;
    color: #4B5563;
    line-height: 1.7;
}

/* Values Section */
.values-section {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #1F2937;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.value-card {
    padding: 40px 30px;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #ffffff;
    border: 2px solid #F3F4F6;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 25px;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1F2937;
}

.value-card p {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 18px;
    opacity: 0.95;
    font-weight: 500;
}

/* Team Section */
.team-section {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
    opacity: 0.5;
}

.team-member h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1F2937;
}

.team-member p {
    font-size: 16px;
    color: #6B7280;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    text-align: center;
        }

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1F2937;
}

.cta-content p {
    font-size: 20px;
    color: #4B5563;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

/* Responsive */
@media (max-width: 968px) {
    .story-content {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .story-text h2, .section-title {
        font-size: 32px;
    }
}