.about-section {
    width: 100%;
    padding: 80px 20px 0px 20px; /* Top Right Bottom Left */
    background-color: #f9f9fd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-container {
    max-width: 1140px;
    margin: 0 auto;
}

.about-title {
    font-size: 48px;
    color: #333;
    margin-bottom: 30px;
}

.about-text {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.about-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.about-col {
    display: flex;
    justify-content: center;
}

.about-advantage {
    padding: 20px;
    max-width: 300px;
    text-align: center;
}

.about-icon {
    width: 80px;
    height: 80px;
}

.about-advantage-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
    margin-bottom: 10px;
}

.about-advantage-desc {
    font-size: 16px;
    color: #666;
}

/* --- OUR MISSION STYLES --- */

.about-mission {
    margin-top: 80px;
    text-align: center;
}

.about-subtitle {
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

.about-mission-text {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.about-mission-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.about-mission-col {
    display: flex;
    justify-content: center;
}

.about-mission-item {
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    max-width: 300px;
    text-align: center;
}

.about-mission-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.about-mission-icon {
    width: 70px;
    height: 70px;
}

.about-mission-title {
    font-size: 20px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #333;
}

.about-mission-desc {
    font-size: 16px;
    color: #666;
}

@media (max-width: 1280px) {
    .about-section {
        padding: 60px 15px 0 15px;
    }
    .about-title {
        font-size: 36px;
    }
    .about-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 10px 0 10px;
    }
    .about-title {
        font-size: 28px;
    }
    .about-text {
        font-size: 16px;
    }
    .about-row,
    .about-mission-row {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 24px;
    }
    .about-text {
        font-size: 14px;
    }
    .about-subtitle {
        font-size: 24px;
    }
    .about-mission-text {
        font-size: 14px;
    }
}
