/* About Page Styles */

/* About Hero Section */
.about-hero-section {
    background-color: #002a50;
    padding: 4rem 15px; /* Reduced padding */
    text-align: center;
    color: #fff;
}

.about-hero-title {
    font-size: 2.8rem; /* Reduced font size */
    font-weight: 700; /* Slightly reduced weight */
    margin-bottom: 1rem;
}

.about-hero-subtitle {
    font-size: 1.1rem; /* Reduced font size */
    max-width: 750px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.85);
}

/* Main About Content */
.about-content-section {
    padding: 5rem 15px;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content-text h2 {
    font-size: 2.2rem; /* Reduced font size */
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.about-content-text p {
    font-size: 1rem; /* Reduced font size */
    line-height: 1.8;
    color: #5a6472;
    margin-bottom: 1rem;
}

.about-content-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
    }
}
