.about-section {
    padding: 80px 20px;
    background: #f7f8fa;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
}

.about-title {
    font-size: 34px;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
    position: relative;
}

.about-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #ff8c00;
    position: absolute;
    left: 0;
    bottom: -8px;
    border-radius: 2px;
}

.about-text {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

.about-features {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-box {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 25px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 32px;
}

.feature-box h4 {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.feature-box p {
    font-size: 14px;
    color: #666;
    margin-top: 6px;
}


/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .about-features {
        grid-template-columns: 1fr;
    }

    .feature-box {
        text-align: center;
    }
}




