.admin-panel-section {
    padding: 70px 0;
    background: #ffffff;
}

.panel-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 50px;
}

.admin-panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.panel-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.panel-card i {
    font-size: 38px;
    color: #003366;
    margin-bottom: 15px;
}

.panel-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #003366;
    margin-bottom: 10px;
}

.panel-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.panel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    background: #eef3ff;
}
