/* About Page Styles */
.about-page {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

.about-hero {
    text-align: center;
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-hero .lead {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
}

.mission-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.mission-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #0066cc;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.mission-image {
    width: 50%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
}

.advantages-section {
    padding: 80px 0;
}

.advantages-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #0066cc;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 20px;
}

.advantage-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

.cta-section {
    background-color: #0066cc;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 15px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #0066cc;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .mission-content {
        flex-direction: column;
    }

    .mission-image {
        width: 100%;
    }

    .about-hero {
        padding: 60px 0;
    }
}