/* Departmanlar için ek stiller */
.department-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.department-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.department-card i {
    color: #00A3CC;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.department-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.department-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.department-btn {
    background: #00A3CC;
    color: white;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.department-btn:hover {
    background: #1E3A8A;
    transform: scale(1.1);
}