/* =========================================================
   RESET & BASE STYLES
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Helvetica, Arial, sans-serif;
    user-select: none;
}

html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-width: 0;
    color: #222;
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(1100px, 100%);
    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 15px clamp(20px, 5vw, 60px);
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    font-size: 24px;
    font-weight: 700;
}

.logo-icon {
    width: 100px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: url('/LogoSmall.svg') center / contain no-repeat;
}

/* Navigation links */

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(15px, 2.5vw, 25px);
    flex: 1;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.nav-links a.active {
    color: #6a1b9a;
    border-bottom: 2px solid #6a1b9a;
    padding-bottom: 4px;
}

/* Navbar actions */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.btn-text {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    white-space: nowrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: linear-gradient(
        135deg,
        #6b34bc 25%,
        #cd2783 50%,
        #f56921 100%
    );
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}


/* =========================================================
   MAIN CONTENT
   ========================================================= */

.content-container {
    width: min(720px, 100%);
    margin: 40px auto 80px;
    padding: 0 20px;
}

.breadcrumb {
    font-size: 12px;
    color: #888;
    margin-bottom: 12px;
}

.page-title {
    font-size: clamp(28px, 5vw, 36px);
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 6px;
    color: #111;
}

.last-updated {
    font-size: 13px;
    color: #777;
    margin-bottom: 35px;
}

.policy-section {
    margin-bottom: 32px;
}

.policy-section h2 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.policy-section p {
    font-size: 13px;
    color: #555;
    line-height: 1.65;
    overflow-wrap: break-word;
}


/* =========================================================
   FAQ CARDS
   ========================================================= */

.faq-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.ch {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 0;
}

.faq-card {
    min-width: 0;
    background-color: #f7f7f7;
    padding: 20px 16px;
    border-radius: 6px;
    border: 1px solid #ebebeb;
}

.faq-card h3 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}

.faq-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    overflow-wrap: break-word;
}

.join-link {
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

.join-link:hover {
    text-decoration: underline;
    color: #f36c21;
}

.join-link:visited {
    color: -webkit-link;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    width: 100%;
    background-color: #f36c21;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 12px;
    margin-top: 15px;
    line-height: 1.5;
    max-width: 250px;
    opacity: 0.9;
}

.footer-links h4 {
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    opacity: 0.85;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    opacity: 0.9;
}

.footer-links a.bold-link {
    font-weight: 700;
    font-size: 15px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    font-size: 11px;
    opacity: 0.85;
}

.faq a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    opacity: 0.9;
}

.lang-select {
    display: flex;
    align-items: center;
    gap: 4px;
}


/* =========================================================
   TABLETS
   768px - 1024px
   ========================================================= */

@media (max-width: 1024px) {

    .navbar {
        padding-left: 30px;
        padding-right: 30px;
    }

    .nav-links {
        gap: 18px;
    }

    .nav-links a,
    .btn-text,
    .btn-primary {
        font-size: 13px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr repeat(3, 1fr);
        gap: 25px;
    }
}


/* =========================================================
   SMALL TABLETS / LARGE PHONES
   600px - 767px
   ========================================================= */

@media (max-width: 767px) {

    /* Navbar */

    .navbar {
        flex-wrap: wrap;
        padding: 14px 20px;
        gap: 12px;
    }

    .logo {
        font-size: 21px;
    }

    .logo-icon {
        width: 85px;
        height: 36px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        flex: none;
        justify-content: flex-start;
        gap: 20px;
        overflow-x: auto;
        padding: 4px 0 8px;
        scrollbar-width: none;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-links a {
        font-size: 13px;
    }

    .nav-actions {
        margin-left: auto;
        gap: 10px;
    }

    .btn-text {
        font-size: 13px;
    }

    .btn-primary {
        padding: 8px 14px;
        font-size: 13px;
    }


    /* Main content */

    .content-container {
        margin-top: 30px;
        margin-bottom: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .page-title {
        font-size: 30px;
    }

    .last-updated {
        margin-bottom: 28px;
    }

    .policy-section {
        margin-bottom: 28px;
    }


    /* FAQ */

    .faq-cards-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .faq-card {
        padding: 18px 15px;
    }


    /* Footer */

    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 25px;
        margin-bottom: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}


/* =========================================================
   MOBILE PHONES
   Up to 599px
   ========================================================= */

@media (max-width: 599px) {

    /* Navbar */

    .navbar {
        padding: 12px 16px;
    }

    .logo-icon {
        width: 78px;
        height: 34px;
    }

    .nav-actions {
        gap: 8px;
    }

    .btn-text {
        font-size: 12px;
    }

    .btn-primary {
        padding: 7px 11px;
        border-radius: 5px;
        font-size: 12px;
    }

    .nav-links {
        gap: 18px;
        padding-bottom: 6px;
    }

    .nav-links a {
        font-size: 12px;
    }


    /* Main */

    .content-container {
        margin-top: 25px;
        margin-bottom: 50px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .breadcrumb {
        font-size: 11px;
    }

    .page-title {
        font-size: clamp(26px, 8vw, 30px);
    }

    .last-updated {
        font-size: 12px;
        margin-bottom: 25px;
    }

    .policy-section {
        margin-bottom: 25px;
    }

    .policy-section h2 {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .policy-section p {
        font-size: 13px;
        line-height: 1.65;
    }


    /* FAQ */

    .faq-cards-grid {
        gap: 10px;
    }

    .faq-card {
        padding: 16px 14px;
        border-radius: 6px;
    }

    .faq-card h3 {
        font-size: 13px;
    }

    .faq-card p {
        font-size: 12px;
    }


    /* Footer */

    .footer {
        padding: 35px 0 18px;
    }

    .footer .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-brand p {
        font-size: 12px;
        max-width: 100%;
    }

    .footer-links h4 {
        margin-bottom: 10px;
    }

    .footer-links li {
        margin-bottom: 7px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 10px;
        gap: 10px;
    }
}


/* =========================================================
   VERY SMALL PHONES
   Up to 380px
   ========================================================= */

@media (max-width: 380px) {

    .navbar {
        padding-left: 12px;
        padding-right: 12px;
    }

    .logo-icon {
        width: 70px;
        height: 32px;
    }

    .btn-text {
        display: none;
    }

    .btn-primary {
        padding: 7px 10px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 11px;
    }

    .content-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .page-title {
        font-size: 25px;
    }

    .policy-section p {
        font-size: 12.5px;
    }

    .footer .container {
        padding-left: 14px;
        padding-right: 14px;
    }
}


/* =========================================================
   LANDSCAPE PHONES
   ========================================================= */

@media (max-width: 767px) and (orientation: landscape) {

    .navbar {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .content-container {
        margin-top: 25px;
        margin-bottom: 40px;
    }

    .footer {
        padding-top: 30px;
    }
}


/* =========================================================
   ACCESSIBILITY / TOUCH DEVICES
   ========================================================= */

@media (hover: none) {

    .nav-links a,
    .btn-text,
    .btn-primary,
    .join-link,
    .footer-links a {
        -webkit-tap-highlight-color: transparent;
    }
}
