/* Hero Section */
.hero-display {
    width: 100%;
    height: 350px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/school1.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 5px solid #20a366;
}

.hero-display h1 { 
    font-size: 3rem; 
    color: #fff; 
    margin: 0;
    text-transform: uppercase;
}

/* Glass Container */
.glass-container {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    padding: 40px;
    margin: -60px auto 60px;
    max-width: 1100px;
    position: relative;
    z-index: 5;
    border: 1px solid #eee;
}

/* Disclosure Cards */
.disclosure-card {
    margin-bottom: 40px;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    overflow: hidden;
}

.card-header-top {
    background: #121619;
    color: #f39c12; /* Golden orange from your reference image */
    padding: 18px 25px;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 3px solid #20a366;
}

/* Table Styling */
.disclosure-table {
    width: 100%;
    border-collapse: collapse;
}

.disclosure-table thead th {
    background: #fdfdfd;
    color: #888;
    text-align: left;
    padding: 12px 25px;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
}

.disclosure-table tbody tr {
    transition: all 0.2s ease;
}

.disclosure-table tbody tr:hover {
    background-color: #f9f9f9;
    box-shadow: inset 4px 0 0 #20a366;
}

.disclosure-table td {
    padding: 18px 25px;
    border-bottom: 1px solid #f1f1f1;
    font-size: 0.95rem;
    color: #444;
}

.label-cell {
    font-weight: 700;
    color: #222;
    background: #fafafa;
    width: 30%;
}

/* Action Buttons */
.btn-action {
    background: #121619;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.btn-action:hover {
    background: #20a366;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-display h1 { font-size: 1.8rem; }
    .glass-container { padding: 15px; margin-top: -30px; }
    .disclosure-table thead { display: none; }
    .disclosure-table td { display: block; width: 100%; box-sizing: border-box; }
    .label-cell { background: #f0f0f0; width: 100%; }
}