.leading-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    padding: 60px 0;
    margin-bottom: 40px;
    text-align: center;
    background-color: red !important;
}

.leading-header h1 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.content-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 50px;
}

.content-card h2 {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid var(--accent-yellow);
    padding-left: 15px;
}

.content-card h2 i { 
    color: var(--secondary-blue); 
}

.content-card .fee-badge {
    background-color: #fff3cd;
    color: #856404;
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid #ffeeba;
}

.content-card p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.content-card .status-list { 
    list-style: none; 
    padding: 0; 
}

.content-card .status-list li { 
    margin-bottom: 10px; 
    display: flex; 
    gap: 10px; 
}

.content-card .status-list li::before { 
    content: "✓"; 
    color: var(--primary-blue); 
    font-weight: bold; 
}

.highlight-box {
    background: #e0f2fe;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border-right: 4px solid var(--secondary-blue);
}

.contact-info {
    background: var(--primary-blue);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.contact-info a {
    color: var(--accent-yellow);
    font-weight: bold;
    text-decoration: none;
}


