/* General Styling */
.about-us {
    padding: 80px 0;
    background-color: #f9f9f9;
}


/* Intro Text */
.intro-text {
    font-size: 18px;
    color: #444;
    margin: 20px auto;
    max-width: 800px;
}

/* Mission Section */
.mission {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.mission-text {
    width: 50%;
    text-align: left;
}

.mission img {
    width: 45%;
    border-radius: 10px;
}

/* Why Choose Us */
.why-choose-us {
    margin-top: 60px;
    padding: 40px 0;
    background: #fff;
}

.features {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.feature {
    width: 30%;
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.feature i {
    font-size: 40px;
    color: #ff6600;
    margin-bottom: 10px;
}

.feature h3 {
    font-size: 18px;
    color: #0c2340;
}

.feature p {
    font-size: 14px;
    color: #555;
}

.feature:hover {
    transform: scale(1.05);
}

/* Our Commitment to Security */
.commitment {
    margin-top: 60px;
    padding: 40px 0;
    background: #fff;
}

.commitment-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.commitment img {
    width: 40%;
    border-radius: 10px;
}

.commitment p {
    width: 55%;
    font-size: 16px;
    color: #444;
}

/* Responsive Design */
@media screen and (max-width: 900px) {
    .mission {
        flex-direction: column;
        text-align: center;
    }

    .mission-text,
    .mission img {
        width: 100%;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 80%;
        margin-bottom: 20px;
    }

    .commitment-content {
        flex-direction: column;
        text-align: center;
    }

    .commitment img,
    .commitment p {
        width: 100%;
    }
}
