:root {
    color-scheme: light dark;
    background-color: #fff !important;
    color: #000 !important;

    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (prefers-color-scheme: dark) {
    :root {
        color: #000 !important;
        background-color: #ffffff !important;
    }
}

@media (prefers-color-scheme: light) {
    :root {
        color: #000 !important;
        background-color: #ffffff !important;
    }
}
.comments-section {
    width: 100%;
    max-width: 600px;
    background: white;
    padding: 20px;
}
h2 {
    text-align: start;
    color: #333;
}
.comments {
    margin-top: 10px;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
}
.comments::-webkit-scrollbar {
    width: 8px;
}
.comments::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
.comment {
    background: #f9f9f9;
    padding: 15px;
    margin-top: 10px;
    border-radius: 8px;
    border-left: 5px solid #004485;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.comment strong {
    display: block;
    color: #333;
    font-size: 16px;
}
.comment p {
    margin: 5px 0 0;
    color: #555;
    font-size: 14px;
}
.comment-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}
.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
}
.comment-form textarea {
    resize: none;
    height: 100px;
}
.comment-form button {
    padding: 12px;
    background: #004485;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}
.comment-form button:hover {
    background: #218838;
}
@media (max-width: 768px) {
    .comments-section {
        width: 100%;
        padding: 7px;
    }
    .comment {
        padding: 12px;
        font-size: 14px;
    }
    .comment strong {
        font-size: 15px;
    }
    .comment p {
        font-size: 13px;
    }
    .comment-form input,
    .comment-form textarea {
        padding: 10px;
        font-size: 13px;
    }
    .comment-form button {
        font-size: 14px;
        padding: 10px;
    }
}
#author-section {
    padding-left: 10px;
    padding-right: 10px;
}
#author-section-content {
    padding-left: 10px;
    padding-right: 10px;
}

#author-description {
    text-align: center;
}
/* Scroll to Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #004485;
    color: white;
    border-radius: 50%;
    border-width: 1px;
    border-color: white;
    display: none; /* Hidden initially */
    align-items: center;
    justify-content: center;
    font-size: 22px;
    z-index: 1000;
    opacity: 80%;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

#scrollTopBtn:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    #scrollTopBtn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

#content-section p {
    line-height: 34px;
    font-size: 15px;
    padding: 0px;
}

#content-section ul {
    list-style-type: decimal !important;
    padding-left: 11px !important;
}

#content-section ul li {
    margin: 10px 0px;
    font-size: 14px;
    line-height: 34px;
}

#content-section h4,
#content-section h3 {
    color: #004478;
    font-weight: 700;
    font-size: 18px;
    padding-left: 0px;
}

#content-section span {
    padding-left: 0px !important;
}

#content-section h2 {
    font-weight: 700;
    color: #004478;
    font-size: 22px;
    padding-left: 0px;
}

#content-section td {
    padding: 0px 10px;
}

#content-section div > * {
    padding: 10px !important;
}

#content-section h3 {
    font-size: 18px;
    line-height: 27px;
}

#content-section p,
#blog_new_page_sec_t li,
#related_blog_sec p,
#banner_dream_blog p #blog_new_page_sec_t p,
#blog_new_page p {
    line-height: 30px !important;
    font-size: 14px !important;
    margin-bottom: 4px;
}
.faqHeading {
    font-size: 24px;
    font-weight: bold;
    color: #004485;
    margin-bottom: 20px;
    text-decoration: underline;
}

.faq-container {
    max-width: 600px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq {
    position: relative;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.faq:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px;
    background: #004485;
    color: white;
    border-radius: 5px;
    transition: 0.3s;
}

.faq-question:hover {
    background: #004485;
}

.icon {
    font-size: 20px;
    padding: 4px;
    transition: transform 0.3s;
}

.rotate {
    transform: rotate(180deg);
}

.faq-question:hover .icon {
    background: #004485;
    color: white;
}

.faq-answer {
    display: none;
    padding: 14px;
    max-height: 100%;
    font-size: 12px;
    color: #333;
    background: #f9f9f9;
    border-left: 5px solid #004485;
    margin-top: 5px;
    border-radius: 5px;
}
@media (width < 480px) {
    .icon {
        display: none !important;
    }

    .faq-container {
        margin-top: 44px !important;
    }
}

#content-section a {
    color: #004478 !important;
    font-weight: 600;
}

.fixed-footer-bg {
    position: fixed !important;
    right: -40px !important;
    bottom: 120px !important;
    z-index: 120 !important;
    transform: rotate(270deg);
}
