/* Go Back Home Button Styles */
.go-back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--main-color, #59b2f4);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    padding: 0.6rem 1.3rem;
    margin-bottom: 1.2rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(89,178,244,0.15);
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.go-back-home:hover {
    background: #2176bd;
    box-shadow: 0 4px 16px rgba(33,118,189,0.18);
    transform: translateY(-2px) scale(1.04);
    color: #fff;
}
.go-back-icon {
    font-size: 1.5rem;
    line-height: 1;
}
/* ===============================
   GLOBAL
================================ */
body {
    background: var(--bg-color, #191f36);
    color: var(--text-color, #ffffff);
    font-family: 'Poppins', 'Nunito', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* ===============================
   Go Back Button
================================ */


/* ===============================
   PRIVACY CONTAINER
================================ */
.privacy-container {
    max-width: 700px;
    margin: 4rem auto 2rem;
    background: var(--snd-bg-color, #262840);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    padding: 3rem 2.5rem 2.5rem;
}

/* ===============================
   HEADER
================================ */
.privacy-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #444;
}

.privacy-header h1 {
    font-size: 2.8rem;
    color: var(--main-color, #59b2f4);
    margin-bottom: 0.5rem;
}

.privacy-date {
    font-size: 1.2rem;
    color: #aaa;
}

/* ===============================
   CONTENT SECTIONS
================================ */
.privacy-content section {
    padding-bottom: 1.6rem;
    margin-bottom: 1.8rem;
    border-bottom: 1px solid #3a3a55;
}

.privacy-content section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-content h2 {
    font-size: 1.5rem;
    color: var(--main-color, #59b2f4);
    margin-bottom: 0.7rem;
}

.privacy-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
}

/* ===============================
   LISTS
================================ */
.privacy-content ul {
    margin: 0.8rem 0 0 1.5rem;
    padding: 0;
}

.privacy-content li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* ===============================
   FOOTER
================================ */
.privacy-footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 1rem;
    color: #aaa;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 600px) {
    .privacy-container {
        margin: 2rem 1rem;
        padding: 1.5rem 1.2rem;
    }

    .privacy-header h1 {
        font-size: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.3rem;
    }

    .privacy-content p,
    .privacy-content li {
        font-size: 1rem;
    }
}
