.policy-section-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.policy-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.policy-section h1 {
    font-size: 2rem;
}
.policy-section h2 {
    font-size: 2rem;
}

.policy-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: clamp(300px, 60vw, 1000px);
    justify-content: start;
    align-items: center;
}

.policy-type-card{
    font-size: 1.5rem;
    margin: 0;
    color: #c8d0d6;
    width: 100%;
    user-select: none;
    
    text-wrap: balance;
    z-index: 50;
    font-weight: 700;

    text-align: left;
    border-radius: 15px;
    padding: 10px 30px;
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: radial-gradient(circle at top, rgba(20, 30, 48, 0.85), rgba(12, 18, 32, 0.85));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    
    transform: translateY(0);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 1px solid rgba(31, 47, 64, 0.3);
    pointer-events: auto;
    cursor: pointer;
}
.policy-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.policy-answer-card{
    font-size: 1rem;
    color: #88969f;
    width: 95%;
    min-height: 10px;
    text-wrap: pretty;
    z-index: 50;
    font-weight: 400;
    text-align: left;

    border-radius: 0 0 15px 15px;
    padding: 30px 30px 30px 30px;
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: transparent;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    
    transform: translateY(0);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 1px solid rgba(31, 47, 64, 0.3);
    pointer-events: auto;
    cursor: pointer;

    mask-image: linear-gradient(to bottom, transparent 0%, black 40px);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40px);
}

.policy-answer-card.hidden {
    display: none;
}

.policy-text {
    color: #88969f !important;
    overflow-y: auto;
    max-height: 75vh;
    padding-right: 30px;

    scrollbar-width: thin;
    scrollbar-color:  rgb(31, 47, 64, 0.6) transparent;
}

.policy-text h1 {
    font-size: 1.5rem;
    color: #c8d0d6;
}
.policy-text h2 {
    font-size: 1.3rem;
    color: #88969f;
}
.policy-text a {
    color: #ffb400;
}

.policy-text::-webkit-scrollbar {
    width: 8px;
}
.policy-text::-webkit-scrollbar-track {
    background: transparent;
}
.policy-text::-webkit-scrollbar-thumb {
    background-color: rgb(31, 47, 64, 0.4);
    border-radius: 8px;
}
.policy-text::-webkit-scrollbar-thumb:hover {
    background-color: rgb(31, 47, 64, 0.7);
 }