/* registrar.css */
.registrar-page-wrapper {
    font-family: 'Inter', sans-serif !important;
    max-width: 1200px; 
    margin: 40px auto; 
    padding: 0 20px;
}

/* Header Styles */
.registrar-header {
    display: flex; 
    justify-content: space-between; 
    align-items: flex-end; 
    margin-bottom: 30px; 
    border-bottom: 3px solid #d4af37; 
    padding-bottom: 15px;
}

.registrar-header h1 {
    color: #800000; 
    font-weight: 800; 
    margin-bottom: 5px; 
    font-size: 2.2rem;
}

.registrar-header p {
    color: #6b7280; 
    font-size: 0.95rem; 
    font-weight: 500;
}

/* Download Button */
.download-btn {
    background: #800000; 
    color: #ffffff !important; 
    padding: 12px 20px; 
    border-radius: 8px; 
    text-decoration: none; 
    font-weight: 700; 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.download-btn:link, 
.download-btn:visited, 
.download-btn:hover, 
.download-btn:active {
    color: #ffffff !important;
    text-decoration: none;
}

.download-btn:hover {
    background: #a00000;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Admission Policy & Requirements Styles */
.section-container {
    margin-bottom: 30px;
}

.policy-title {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}

.section-subtitle {
    color: #4b5563;
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
}

.admission-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px;
}

.requirement-heading {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 800;
    padding-left: 0;
}

.req-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #374151;
}

.req-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.req-list li i {
    color: #6b7280;
    margin-top: 5px;
    font-size: 1rem;
}

/* Layout Grids */
.registrar-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 30px;
    margin-bottom: 30px;
    justify-content: center;
}

/* Card Styling */
.step-card {
    background: #fff; 
    padding: 25px; 
    border-radius: 15px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.step-card h2 {
    font-size: 1.3rem; 
    margin-bottom: 20px; 
    text-transform: uppercase;
}

/* Step Items */
.step-item {
    display: flex; 
    margin-bottom: 12px; 
    padding: 12px; 
    border-radius: 8px;
}

.step-item p {
    margin: 0; 
    font-size: 1rem;
    color: #000000;
    font-weight: 500;
    line-height: 1.5;
}

.step-item span {
    font-weight: 800; 
    margin-right: 15px;
    font-size: 1.1rem;
}

.step-label {
    display: block; 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    margin-bottom: 2px;
}

/* Specific Card Themes */
.card-college { border-top: 5px solid #800000; }
.card-college .step-item { background: #fffafa; border-left: 3px solid #800000; }
.card-college span { color: #800000; }

.card-highschool { border-top: 5px solid #d4af37; margin: 0 auto; }
.card-highschool .step-item { background: #fffcf5; border-left: 3px solid #d4af37; }
.card-highschool span { color: #a3862b; }
.card-highschool .step-label { color: #7a6523; }

.card-regular { border-top: 5px solid #2196f3; }
.card-regular .step-item { background: #f0f7ff; border-left: 3px solid #2196f3; }
.card-regular span { color: #1565c0; }
.card-regular .step-label { color: #1565c0; }

/* Responsive Fixes */
@media (max-width: 768px) {
    .registrar-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .registrar-grid {
        flex-direction: column;
    }

    .step-card {
        min-width: 100% !important;
    }
    
    .admission-grid {
        grid-template-columns: 1fr;
    }
}