:root {
    --red-rgb-color: 211, 50, 57;
    --font-primary: 'Montserrat', sans-serif;
}

/*-------- Section Styles -------*/
section {
    width: 100%;
    background-color: var(--primary-color);
    padding: 40px 0;
}

section .policy-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

section .policy-page .heading {
    font-size: 28px;
    font-family: var(--font-primary);
    font-weight: 700;
    padding: 20px 0;
    color: var(--accent-color);
    border-bottom: 2px solid rgba(var(--red-rgb-color), 0.3);
    margin-bottom: 20px;
}

section .policy-page .para-1 {
    font-size: 17px;
    font-family: var(--font-primary);
    font-weight: 300;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

section .policy-page .eligble-list {
    list-style: none;
    padding-left: 0;
}

section .policy-page .eligble-list li {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 16px;
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

section .policy-page .eligble-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

section .policy-page .eligble-list li .eligble-span {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    color: rgba(var(--red-rgb-color), 0.8);
}

section .policy-page .list-title {
    font-size: 20px;
    color: var(--accent-color);
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    margin-top: 30px;
}

.faq-item {
    background-color: #1212121a;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: #12121280;
}
.faq-item:hover .faq-question{
    color: var(--primary-color);
}

.faq-question {
    font-size: 18px;
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--secondary-color);
}

.faq-question i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-answer {
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: 300;
    color: var(--secondary-color);
    line-height: 1.6;
    display: none;
    padding: 10px 0;
}

/* Links */
main section a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

main section a:hover {
    color: var(--accent-color);
    text-decoration: none;
}