/* About Page Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0A2540 0%, #1a365d 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}

.about-image {
    text-align: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #0A2540 0%, #1a365d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.image-placeholder i {
    font-size: 8rem;
    color: #4DA8DA;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #0A2540;
    margin-bottom: 10px;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #4DA8DA;
    margin-bottom: 30px;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Skills */
.skills {
    margin-top: 30px;
}

.skill {
    margin-bottom: 25px;
}

.skill h4 {
    margin-bottom: 10px;
    color: #0A2540;
}

.skill-bar {
    height: 10px;
    background: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
}

.skill-level {
    height: 100%;
    background: #4DA8DA;
    border-radius: 5px;
    position: relative;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    color: #0A2540;
    margin-bottom: 30px;
}

.mission-text blockquote {
    border-left: 4px solid #4DA8DA;
    padding: 20px;
    margin: 30px 0;
    background: white;
    border-radius: 0 10px 10px 0;
}

.mission-text blockquote p {
    font-size: 1.5rem;
    font-style: italic;
    color: #0A2540;
    margin: 0;
}

.mission-image .image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #0A2540 0%, #1a365d 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.mission-image .image-placeholder i {
    font-size: 6rem;
    color: #4DA8DA;
}

/* Values Section */
.values-section {
    padding: 100px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    color: #4DA8DA;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0A2540;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .mission-text blockquote p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
        margin-top: 70px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .about-section, .mission-section, .values-section {
        padding: 60px 0;
    }
    
    .image-placeholder {
        height: 300px;
    }
    
    .image-placeholder i {
        font-size: 6rem;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .mission-text blockquote p {
        font-size: 1.1rem;
    }
    
    .image-placeholder {
        height: 250px;
    }
    
    .image-placeholder i {
        font-size: 4rem;
    }
}