/* Policy Accordion Style */
.policy-container {
margin-top: 30px;
text-align: left;
border-radius: 12px;
overflow: hidden;
}
.policy-item {
background: #1e293b;
border-bottom: 1px solid #334155;
cursor: pointer;
}
.policy-header {
padding: 15px;
display: flex;
justify-content: space-between;
align-items: center;
font-weight: bold;
color: #e2e8f0;
font-size: 14px;
}
.policy-content {
max-height: 0;
overflow: hidden;
padding: 0 15px;
background: #0f172a;
color: #94a3b8;
font-size: 13px;
transition: all 0.3s ease-out;
}
.policy-item.active .policy-content {
padding: 15px;
max-height: 200px;
}
.policy-item.active .policy-header {
color: #22c55e;
}