/* =========================================
   APPLY PAGE STYLES
========================================= */

.apply-box {
    background: var(--color-white);
    padding: var(--space-6);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    max-width: 700px;
    margin: 0 auto;
}

.apply-box h2 {
    margin-top: 0;
    margin-bottom: var(--space-4);
    text-align: center;
}

.requirements {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0;
}

.requirements li {
    margin-bottom: var(--space-2);
    padding-left: 1rem;
    position: relative;
}

.requirements li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

.apply-contact {
    margin-top: var(--space-4);
    text-align: center;
}

.apply-contact a {
    color: var(--color-navy);
    text-decoration: none;
}

.apply-contact a:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
    .apply-box {
        padding: var(--space-4);
    }
}