.policies-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.policies-list {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    margin: 0;  
    border: none;
    list-style: none;
    padding-left: 0;
}

.policies-list .list-group-item {
    background: transparent;
    border: none;
    padding: 0.75rem 1rem;
    border-left: 3px solid #0066cc;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.policies-list .list-group-item:hover {
    background: white;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0,102,204,0.2);
    border-left: 4px solid #0066cc;
}

.policy-name {
    color: #0066cc;
    font-weight: 600;
    transition: color 0.3s ease;
}

.policies-list .list-group-item:hover .policy-name {
    color: #004499;
}

.approval-info {
    background: #e3f2fd;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 2rem;
    border-left: 4px solid #0066cc;
}

.download-btn {
    background: #e3f2fd;
    color: #0066cc;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}



.conduct-rules {
    list-style: none;
    padding: 0;
}

.conduct-rule {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid #0066cc;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.conduct-rule:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0,102,204,0.15);
}

.rule-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 0.9rem;
}

.rule-title {
    color: #004499;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.rule-content {
    margin-left: 3rem;
}

.rule-item {
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border-left: 3px solid #e3f2fd;
    font-size: 0.95rem;
    line-height: 1.5;
}

.sub-items {
    margin-top: 1rem;
}

.sub-item {
    background: #e3f2fd;
    padding: 0.6rem;
    border-radius: 6px;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
}