.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 40px;
}

.about-card {
    background: #e5e5e5;
    border-radius: 20px;     
    overflow: hidden;
    padding: 20px;
    text-align: center;
    height: 450px;            
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.about-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.about-card h3 {
    color: #dc2626;
    margin: 15px 0 10px;
}

.about-card p {
    font-size: 14px;
}



@media (max-width: 576px) {

    .about-content {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }

    .about-card {
        height: auto;
        padding: 15px;
    }

    .about-card img {
        height: 220px; 
        border-radius: 12px;
    }

    .about-card h3 {
        font-size: 18px;
    }

    .about-card p {
        font-size: 13px;
    }
}