.education-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.education-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    animation: scaleIn 0.6s ease;
    opacity: 0;
    animation-fill-mode: forwards;
}

.education-card:nth-child(1) { animation-delay: 0.1s; }
.education-card:nth-child(2) { animation-delay: 0.3s; }

.education-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.degree {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.institution {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.year {
    color: var(--gray);
    font-size: 0.9rem;
}