/* Global Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f7f8fc;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* About Section Styling */
.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 40px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.section-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.text-center {
    text-align: center;
}

.btn-learn-more {
    font-size: 18px;
    padding: 12px 30px;
    background-color: #0066cc;
    color: #fff;
    border-radius: 30px;
    border: 2px solid #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-learn-more:hover {
    background-color: #fff;
    color: #0066cc;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
}

.about-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.05);
}

/* Mission & Vision Section */
.mission-vision {
    display: flex;
    justify-content: space-between;
    padding: 60px 0;
    background-color: #f4f8fb;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
}

.mission-vision .section-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    text-align: center;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        padding: 60px 15px;
    }

    .about-img {
        max-width: 100%;
        margin-top: 30px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-description {
        font-size: 16px;
    }

    .mission-vision {
        flex-direction: column;
    }
}