* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
    background-color: #00213D;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

img {
    opacity: 1 !important;
}

/* Navbar — logo only, centered */
.navbar {
    padding: 0.75rem 0;
    transition: background 0.3s ease;
    background: transparent;
    z-index: 1050;
    text-align: center;
}

.navbar .container {
    justify-content: center;
}

.navbar-brand {
    margin: 0 auto;
}

.navbar-scrolled {
    background: rgba(0, 33, 61, 0.97) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
}

.logo-reg {
    vertical-align: top;
    font-size: 0.7rem;
}

.logo-img {
    width: 35px;
    height: auto;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #0d84f2, #f5a623);
    z-index: 9999;
    transition: width 0.1s;
}

/* Page Content Section */
.pos-content-section {
    padding: 100px 0 60px;
    min-height: 80vh;
}

.pos-content-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

/* Page title */
.pos-page-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

/* Section headings inside content */
.pos-content-section h4.section-heading {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.5rem;
    margin-bottom: 1.2rem;
    margin-top: 1.5rem;
}

/* Paragraphs */
.pos-content-section p,
.pos-content-section .lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.2rem;
}

/* Links */
.pos-content-section a {
    color: #0d84f2;
    text-decoration: none;
}

.pos-content-section a:hover {
    text-decoration: underline;
    color: #3fa0ff;
}

/* Lists */
.pos-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.pos-list li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    padding: 6px 0 6px 1.8rem;
    position: relative;
    line-height: 1.6;
}

.pos-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #0d84f2;
}

/* Page image */
.pos-page-img {
    max-height: 180px;
    width: auto;
    display: block;
    margin: 0 auto 1.5rem auto;
    filter: brightness(1.1);
}

/* Support contact info */
.support-contact-block {
    text-align: center;
    margin: 1.5rem 0;
}

.support-contact-block h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.support-contact-block a {
    color: #0d84f2;
    font-size: 1rem;
    text-decoration: none;
}

.support-contact-block a:hover {
    text-decoration: underline;
}

/* FAQ Accordion (Bootstrap 5) */
.pos-faq-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.pos-faq-accordion .accordion-button {
    background: transparent;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
    padding: 1.1rem 1.5rem;
    box-shadow: none;
}

.pos-faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(13, 132, 242, 0.15);
    color: #0d84f2;
    box-shadow: none;
}

.pos-faq-accordion .accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.pos-faq-accordion .accordion-button::after {
    filter: invert(1);
}

.pos-faq-accordion .accordion-body {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.97rem;
    line-height: 1.7;
    padding: 1rem 1.5rem 1.2rem;
}

/* Footer */
.pos-footer {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.pos-footer-widget h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.pos-footer address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.pos-footer address strong {
    color: #ffffff;
}

.pos-footer address a {
    color: #0d84f2;
    text-decoration: none;
}

.pos-footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.pos-footer-social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.pos-footer-social a:hover {
    color: #0d84f2;
}

.pos-footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem 0;
    text-align: center;
}

.pos-footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.pos-footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

/* Back to Top */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(13, 132, 242, 0.85);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 999;
}

#back-to-top:hover {
    background: #0d84f2;
    transform: translateY(-3px);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .pos-content-section {
        padding: 90px 0 40px;
    }

    .pos-content-card {
        padding: 1.5rem;
    }

    .pos-page-title {
        font-size: 1.3rem;
    }

    .pos-content-section h4.section-heading {
        font-size: 1rem;
    }

    .pos-content-section p,
    .pos-content-section .lead,
    .pos-list li {
        font-size: 0.9rem;
    }

    .pos-faq-accordion .accordion-button {
        font-size: 0.9rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 575px) {
    .pos-content-section {
        padding: 80px 0 30px;
    }

    .pos-content-card {
        padding: 1.2rem;
    }
}
