.projects-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.project-card {
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.project-card h2 {
    font-size: 1.8em;
    margin: 0.5rem 0;
}

.project-card h3 {
    font-size: 1.2em;
    color: #666;
    margin: 0.2rem 0 1rem 0;
}

.project-image img {
    max-width: 100%;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.project-link {
    display: inline-block;
    margin: 1rem 0;
    padding: 0.6rem 1.2rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.project-link:hover {
    background: #333;
}

.project-description {
    font-size: 1em;
    line-height: 1.6;
    color: #333;
    margin-top: 1rem;
}