:root {
    --primary: #00AEEF;
    --primary-dark: #0088cc;
    --secondary: #FF7F00;
    --dark: #1f2937;
    --gray: #4b5563;
    --light: #f9fafb;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { color: var(--dark); line-height: 1.7; background-color: var(--light); }
.container { width: 90%; max-width: 1000px; margin: 0 auto; }
header { background-color: var(--white); position: fixed; top: 0; width: 100%; z-index: 1000; box-shadow: var(--shadow-sm); }
.nav-container { width: 90%; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo img { height: 50px; object-fit: contain; }
.nav-links { display: flex; list-style: none; align-items: center; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 500; }
.btn { display: inline-flex; padding: 10px 20px; border-radius: 6px; font-weight: 600; text-decoration: none; background: var(--primary); color: white; }
.legal-wrapper { margin-top: 140px; margin-bottom: 80px; background: var(--white); padding: 50px; border-radius: 16px; box-shadow: var(--shadow-md); }
.legal-wrapper h1 { font-size: 2.5rem; color: var(--dark); margin-bottom: 10px; border-bottom: 3px solid var(--primary); padding-bottom: 15px; }
.last-updated { font-style: italic; color: var(--gray); margin-bottom: 30px; font-size: 0.95rem; }
.legal-wrapper h2 { font-size: 1.5rem; color: var(--primary-dark); margin-top: 35px; margin-bottom: 15px; }
.legal-wrapper p { margin-bottom: 20px; color: var(--gray); text-align: justify; }
.legal-wrapper ul { margin-bottom: 20px; padding-left: 25px; color: var(--gray); }
.legal-wrapper li { margin-bottom: 10px; }
footer { background: var(--dark); color: white; padding: 60px 0 0 0; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { height: 40px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { color: #9ca3af; max-width: 300px; }
.footer-links h3 { font-size: 1.2rem; margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #9ca3af; text-decoration: none; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { text-align: center; padding: 20px; border-top: 1px solid rgba(255,255,255,0.1); color: #9ca3af; font-size: 0.9rem; }
@media (max-width: 768px) { .legal-wrapper { padding: 25px; margin-top: 110px; } .legal-wrapper h1 { font-size: 2rem; } .nav-links { display: none; } .footer-content { grid-template-columns: 1fr; text-align: center; } }
