/* About Page Specific Styles */

.page-hero {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2c2c2c 100%);
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.5rem;
    opacity: 0.9;
}

.about-intro {
    padding: 80px 20px;
    background-color: white;
}

.about-intro h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 30px;
    text-align: center;
}

.intro-text {
    font-size: 1.3rem;
    text-align: center;
    color: #666;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.founder-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background-color: var(--light-color);
    border-radius: 15px;
}

.founder-info h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.founder-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.our-objectives {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2c2c2c 100%);
    color: white;
}

.our-objectives h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.objective-card {
    background-color: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: transform 0.3s ease;
}

.objective-card:hover {
    transform: translateY(-10px);
}

.objective-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 auto 30px;
    color: white;
}

.objective-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}

.objective-card p {
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.our-sessions {
    padding: 80px 20px;
    background-color: white;
    text-align: center;
}

.our-sessions h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.our-sessions p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.our-sessions .story-content h3 {
    color: var(--dark-color);
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.our-sessions .story-content p {
    color: #666;
}

.our-sessions .story-content ul {
    color: #666;
}

.our-sessions .story-content ul li {
    color: #666;
}

.our-story {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2c2c2c 100%);
    color: white;
}

.our-story h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.9);
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.stat-item p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.our-approach {
    padding: 80px 20px;
    background-color: white;
}

.our-approach h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 60px;
}

.approach-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.approach-text h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.approach-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.approach-text ul {
    list-style: none;
    padding: 0;
}

.approach-text ul li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.approach-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.approach-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--light-color), #e0e0e0);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-impact {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2c2c2c 100%);
    color: white;
}

.our-impact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.impact-card {
    background-color: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
}

.impact-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.impact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.impact-card p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.impact-report {
    max-width: 700px;
    margin: 60px auto 0;
    text-align: center;
    padding: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.impact-report h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.impact-report p {
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.team-section {
    padding: 80px 20px;
    background-color: white;
}

.team-section h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 20px;
}

.team-section .section-subtitle {
    color: #666;
}

.team-section .story-content h3 {
    color: var(--dark-color);
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.team-section .story-content p {
    color: #666;
}

.team-section .story-content strong {
    color: var(--dark-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--light-color);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    margin-bottom: 20px;
}

.member-image i {
    font-size: 5rem;
    color: var(--primary-color);
}

.team-member h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.team-member p {
    color: #666;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
    }
    
    .objectives-grid,
    .impact-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}
