/* =========================
   LEGAL PAGE BASE
========================= */
* { margin: 0px; padding: 0; box-sizing: border-box;}
html, body { width: 100%; height: 100%; scroll-behavior: smooth; text-decoration: none;}



body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    background: #f5f5f5;
    color: #121212;
    overflow-x: hidden;
    margin: 0;
    padding-bottom: 50px; /* space for fixed footer */
}

/* =========================
   HEADER
========================= */
.site-header {
    position: relative;   /* was fixed */
    width: 100%;
    background: #000000; 
    padding-left: 30px; padding-right: 30px; padding-bottom: 10px; padding-top: 10px;
    border-bottom: 1px solid rgba(160, 160, 160, 0.08);
}
.site-container {
    max-width: 0 auto;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-header .nav-left a {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 40px;
    color: #ffffff;
    text-decoration: none;
}

.site-header .nav-left a:active {
    transform: scale(0.95);
}
.nav-left a:hover {
    color: #ff0000;
    transform: scale(1.05); transition: all 0.3s ease;
}


/* LEGAL PAGE SINGLE SECTION */
.legal-page {
    min-height: 100vh;              
    padding: 10px 40px 10px 40px;  /* top, sides, bottom */
    background: #F5F5F5;
}

.content-container {
    max-width: 0 auto;
    margin: 0 auto;
}

/* HERO TITLE */
.hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #121212;
    margin-top: 0px;
}

/* HERO SUBTITLE */
.hero-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 40px;
}

/* CONTENT HEADINGS */
h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

h3 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 10px;
}

/* CONTENT PARAGRAPHS */
p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* =========================
   FOOTER
========================= */
.site-footer {padding-left: 40px; padding-right: 40px; padding-top: 10px; padding-bottom: 10px; background: black; color: #ffffff;}
.footer-legal { display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 14px; font-weight: 400; opacity: 0.85;}
.footer-legal a { color: #ffffff; text-decoration: none; transition: color 0.3s ease;}     

@media screen and (max-width: 768px) {
.nav-left a { font-size: 30px; }
.hero-title { font-size: 24px; }
.hero-subtitle { font-size: 16px; }
h2 { font-size: 20px; }
h3 { font-size: 18px; }
p { font-size: 14px; }
.footer-legal { flex-direction: column; gap: 10px; font-size: smaller; line-height: 5px;padding-bottom: 5px; padding-top: 5px;}
.footer-legal a { font-size: small; }
}