/* Policies List */
.policies-list {
    max-width: 960px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.policy-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid #e0e0e0;
}

.policy-row:nth-child(odd) {
    background-color: #f5f5f5;
}

.policy-row:nth-child(even) {
    background-color: #ffffff;
}

.policy-name {
    font-size: 1rem;
    color: #333;
}

.policy-download {
    font-size: 0.9rem;
    font-weight: 700;
    color: #5387c4; /* pink/magenta to match screenshot */
    text-decoration: none;
    letter-spacing: 0.05em;
}

.policy-download:hover {
    text-decoration: underline;
}





/* Policies Container */
.page-header {
    background-color: #5387c4;
    color: white;
    text-align: center;
    padding: 2.2rem;
    margin-top: 20px;
}
.page-header h1 {
    margin: 5.5rem 0 0 0;
    font-size: 2.5rem;
}
.policies-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Policy Box */
.policy-box {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.policy-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Policy Icon */
.policy-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Policy Title */
.policy-box h3 {
    color: #5387c4;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Policy Description */
.policy-box p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Policy Link */
.policy-link {
    display: inline-block;
    background-color: #5387c4;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.policy-link:hover {
    background-color: #4070a8;
}
.policy-list {
    max-width: 960px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.policy-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border: 1px solid #5387c4;
    border-radius: 8px;
    margin-bottom: 4px;
}

.policy-row:nth-child(odd) {
    background-color: #f5f5f5;
}

.policy-row:nth-child(even) {
    background-color: #ffffff;
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .policies-container {
        grid-template-columns: 1fr;
    }
    
    .policy-box {
        padding: 25px 20px;
    }
}
