/* policies.css - Shared by all policy pages */

.policy-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)), 
                url('../../images/hero/phd.webp') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    color: white;
     text-align: center;
    min-height: 400px;

}


.policy-banner h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.breadcrumb-policy {
    background: #f8f9fa;
    padding: 15px 0;
    margin-bottom: 0;
}

.breadcrumb-policy .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6c757d;
    padding: 0 10px;
}

.breadcrumb-policy a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s;
}

.breadcrumb-policy a:hover {
    color: #cf2027;
}

.breadcrumb-policy .active {
    color: #cf2027;
    font-weight: 500;
}

.policy-content {
    padding: 50px 0;
}

.policy-title {
    color: #cf2027;
    border-bottom: 2px solid #cf2027;
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-weight: 600;
}

.pdf-container {
    height: 80vh;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.download-btn {
    background-color: #cf2027;
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s;
    text-decoration: none;
}

.download-btn:hover {
    background-color: #a81a1f;
    color: white;
}