.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-item {
    background-color: #333333;
    border-radius: 12px;
    padding: 15px;
    max-width: 400px;
    text-align: center;
    transition: transform 0.3s ease;
}

.project-item img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.project-item:hover img {
    transform: scale(1.05);
}

.project-item h2 {
    margin: 15px 0 10px;
    font-size: 20px;
}

.project-item p {
    font-size: 16px;
    color: #ccc;
}
