
/* ===================================================
   3. ABOUT CONTENT SECTION
   =================================================== */
.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 4rem 10%;
    flex-wrap: wrap;
    background-color: #1C1C1C;
}

.about-text {
    max-width: 600px;
    text-align: left;
}

.about-text h2 {
    font-size: 2rem;
    color: #F91229;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.about-image img {
    width: 350px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 0, 77, 0.3);
}

/* ===================================================
   4. FEATURES SECTION
   =================================================== */
.about-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 4rem 10%;
    background-color: #1C1C1C;

}

.feature {
    background: #111;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
    transition: transform 0.3s ease-in-out;
    border: 2px solid rgba(255, 0, 77, 0.3);
}

.feature:hover {
    transform: scale(1.05);
    border-color: #F91229;
}

.feature img {
    width: 50px;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    color: #F91229;
    margin-bottom: 0.5rem;
}
/* ===================================================
   5. FOOTER SECTION
   =================================================== */
.about-footer {
    background-color: #1C1C1C;
    padding: 2rem;
    text-align: center;
   
}

.about-footer h2 {
    color: #F91229;
    font-size: 1.8rem;
}
