/* CSS khusus halaman profil */
.page-header {
    padding: 140px 0 60px 0;
    background: linear-gradient(135deg, var(--alwahyu-dark), #1e293b);
    color: white;
}
.page-header .section-title { color: white; margin-bottom:10px; }
.page-header .section-desc { color: #cbd5e1; }

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.profile-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.profile-card h3 {
    color: var(--alwahyu-primary);
    margin-bottom: 20px;
    font-size: 1.4rem;
    border-bottom: 2px solid var(--alwahyu-border);
    padding-bottom: 10px;
}

.profile-card ul, .profile-card ol {
    padding-left: 20px;
}

.profile-card li {
    margin-bottom: 10px;
    color: var(--alwahyu-text);
}
