/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #0b0f1a;
    color: #ffffff;
    line-height: 1.8;
}

/* ================= CONTAINER ================= */
.container {
    width: 90%;
    max-width: 900px;
    margin: auto;
}

/* ================= HEADER ================= */
header {
    background: #11182a;
    padding: 15px 0;
    border-bottom: 1px solid #1f2a44;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    border-radius: 8px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #00e5ff;
}

/* ================= PAGE HERO ================= */
.page-hero {
    text-align: center;
    padding: 60px 20px;
    background: radial-gradient(circle at top, rgba(0, 229, 255, 0.12), transparent 45%), #0b0f1a;
}

.page-hero h1 {
    font-size: 42px;
    color: #00e5ff;
}

.page-hero p {
    color: #b0b8c5;
    margin-top: 10px;
    font-size: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ================= CONTENT GRID ================= */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-card {
    background: linear-gradient(180deg, #11182a 0%, #0b1220 100%);
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 229, 255, 0.15);
}

.info-card h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #38bdf8;
}

.info-card p,
.info-card ul li {
    color: #cbd5e1;
    line-height: 1.75;
}

.info-card ul {
    padding-left: 20px;
    margin-top: 10px;
}

.info-card a {
    color: #00e5ff;
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}

/* ================= LEGAL CONTENT ================= */
.legal-content {
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 0;
}

/* HEADINGS */
.legal-content h2 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #00e5ff;
    font-size: 20px;
}

.legal-content h3 {
    margin-top: 15px;
    font-size: 17px;
    color: #e2e8f0;
}

/* TEXT */
.legal-content p {
    color: #cbd5e1;
    margin-bottom: 15px;
    font-size: 15px;
}

/* LISTS */
.legal-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-content ul li {
    margin-bottom: 8px;
    color: #cbd5e1;
}

/* LINKS */
.legal-content a {
    color: #00e5ff;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* ================= FOOTER ================= */
footer {
    background: #11182a;
    padding: 25px 0;
    border-top: 1px solid #1f2a44;
    text-align: center;
}

.footer-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #00e5ff;
}

.footer-bottom {
    font-size: 13px;
    color: #8892a6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-header h1 {
        font-size: 26px;
    }

    .legal-content {
        padding: 20px;
    }
}