/* Achievements Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.achievement-item {
    padding: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease, opacity 0.5s ease, transform 1s ease;
}

.achievement-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.achievement-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.achievement-item h3 {
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.achievement-item p {
    color: rgba(255, 255, 255, 0.8);
}