/* Policy & career application pages */
.policy-section-wrapper {
    background: linear-gradient(180deg, #f4f6f8 0%, #eef1f4 100%);
    padding: 48px 0 60px;
}

.policy-pages .headingTitle h1,
.policy-pages .headingTitle h2 {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 22px 18px;
    margin: 0 0 0;
    font-weight: 600;
    font-size: 1.65rem;
    border-bottom: 4px solid #E6AD38;
    text-align: center;
}

.policy-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 36px 42px;
    margin: 0 auto;
    color: #444;
    line-height: 1.75;
}

.policy-card h3 {
    color: #2c3e50;
    font-size: 1.25rem;
    margin: 28px 0 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
}

.policy-card h3:first-child {
    margin-top: 0;
}

.policy-card p {
    margin-bottom: 14px;
}

.policy-card ul {
    padding-left: 1.2rem;
    margin-bottom: 16px;
}

.policy-card ul li {
    margin-bottom: 10px;
    color: #555;
}

.policy-card a {
    color: #1a5276;
    font-weight: 600;
}

.policy-intro {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 20px;
}

.grievance-card {
    background: #f8fafc;
    border-left: 4px solid #E6AD38;
    padding: 20px 22px;
    margin: 20px 0;
    border-radius: 0 6px 6px 0;
}

.grievance-card strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 6px;
}

/* Application forms */
.app-form-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.app-form-lead {
    text-align: center;
    margin-bottom: 28px;
    color: #555;
}

.app-form .form-group {
    margin-bottom: 16px;
}

.app-form label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
    font-size: 0.92rem;
}

.app-form .form-control {
    border: 1px solid #cfd6dd;
    border-radius: 4px;
    height: auto;
    min-height: 42px;
    padding: 10px 12px;
    box-shadow: none;
}

.app-form textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.app-form select.form-control {
    appearance: auto;
}

.app-form .hp-field {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

.app-form .btn-submit-app {
    background: #2c3e50;
    color: #fff;
    border: none;
    border-bottom: 3px solid #E6AD38;
    padding: 12px 28px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 4px;
    transition: background 0.2s ease, transform 0.15s ease;
}

.app-form .btn-submit-app:hover,
.app-form .btn-submit-app:focus {
    background: #1a2a38;
    color: #fff;
    transform: translateY(-1px);
}

.app-form .btn-submit-app:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

.app-form-status {
    display: none;
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 4px;
    font-weight: 500;
}

.app-form-status.is-success {
    display: block;
    background: #e8f6ef;
    color: #1e6b45;
    border: 1px solid #b7e0c8;
}

.app-form-status.is-error {
    display: block;
    background: #fdecea;
    color: #9b2c2c;
    border: 1px solid #f5c2c0;
}

.required-mark {
    color: #c0392b;
}

@media (max-width: 767px) {
    .policy-section-wrapper {
        padding: 28px 0 40px;
    }

    .policy-card {
        padding: 22px 18px;
        border-radius: 6px;
    }

    .policy-pages .headingTitle h1,
    .policy-pages .headingTitle h2 {
        font-size: 1.35rem;
        padding: 16px 12px;
    }
}
