.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.project-card {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    margin: 15px auto;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
}

.project-card h3 {
    margin-top: 0;
}

.project-card .btn {
    display: inline-block;
    padding: 10px 15px;
    color: white;
    background-color: #007BFF;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.project-card .btn:hover {
    background-color: #0056b3;
}

.project-image {
    max-width: 100%;
    border-radius: 8px 8px 0 0;
    margin-bottom: 10px;
}
