#project-overview {
    background: #f4f4f4;
    padding: 40px 0;
    color: #333;
}

#project-overview .container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

#project-overview h2 {
    color: #501f3a;
    margin-bottom: 30px;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.project-card {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 30%;
    overflow: hidden;
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    color: #501f3a;
}

.project-info p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.more-info {
    text-decoration: none;
    color: #cb2d6f;
    font-weight: bold;
    transition: color 0.3s ease;
}

.more-info:hover {
    color: #a73351;
}

#project-overview .container .title{
    justify-content: center;
    display: flex;
}

@media (max-width: 992px) {
    .projects-grid {
        flex-direction: column;
        align-items: center;
    }

    .project-card {
        width: 80%;
    }
}
