/* About page specific styles */
.about-page {
    padding-top: 90px;
}

.about-hero {
    background-color: #133364;
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 60px;
}

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

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-content {
    max-width: 1030px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content h2 {
    color: #133364;
    font-size: 2rem;
    margin-bottom: 25px;
}

.mission-section {
    margin-bottom: 60px;
    text-align: left;
    padding: 0 20px;
}

.mission-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    max-width: 800px;
    margin: 0 auto 20px;
}

.mission-section p:last-child {
    margin-bottom: 0;
}

.values-section {
    margin-bottom: 60px;
}

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

.value-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    color: #133364;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.value-card p {
    color: #555;
    line-height: 1.5;
}

.expertise-section {
    margin-bottom: 60px;
}

.expertise-section p {
    color: #444;
    margin-bottom: 20px;
}

.expertise-section ul,
.certification-section ul {
    list-style: none;
    padding: 0;
}

.expertise-section li,
.certification-section li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #444;
}

.expertise-section li::before,
.certification-section li::before {
    content: "•";
    color: #133364;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -3px;
}

.certification-section {
    margin-bottom: 60px;
}

.certification-section p {
    color: #444;
    margin-bottom: 20px;
}

/* Responsive design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }

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

    .about-content h2 {
        font-size: 1.8rem;
    }

    .value-card h3 {
        font-size: 1.3rem;
    }

    .mission-section p {
        font-size: 1rem;
    }
} 