/* style.css */
:root {
    --primary: #25D366;
    --dark: #0f172a;
    --text: #334155;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --radius: 8px;
}

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

body { background-color: var(--white); color: var(--text); line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh; }

header { padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #e2e8f0; }
.logo { font-weight: 800; font-size: 1.5rem; color: var(--dark); text-decoration: none; letter-spacing: -0.5px; }
.logo span { color: var(--primary); }

main { flex: 1; max-width: 960px; margin: 0 auto; padding: 60px 20px; width: 100%; }

.hero { text-align: center; padding: 60px 0; }
h1 { font-size: 3rem; margin-bottom: 20px; color: var(--dark); line-height: 1.1; letter-spacing: -1px; }
.subtitle { font-size: 1.2rem; color: var(--text-light); margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }

.btn-cta { display: inline-block; background-color: var(--dark); color: white; padding: 16px 32px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: all 0.2s; }
.btn-cta:hover { background-color: var(--primary); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2); }

/* Legal Styles */
.legal-content h1 { font-size: 2.5rem; margin-bottom: 10px; color: var(--dark); }
.legal-content h2 { font-size: 1.6rem; margin-top: 40px; margin-bottom: 15px; color: var(--dark); border-bottom: 2px solid #f1f5f9; padding-bottom: 10px; }
.legal-content h3 { font-size: 1.2rem; margin-top: 25px; margin-bottom: 10px; font-weight: 700; color: #1e293b; }
.legal-content p, .legal-content li { margin-bottom: 12px; color: #475569; font-size: 0.95rem; text-align: justify; }
.legal-content ul { margin-left: 20px; margin-bottom: 20px; }
.last-update { font-size: 0.85rem; color: #94a3b8; margin-bottom: 40px; display: block; font-style: italic; }
.back-link { display: inline-block; margin-bottom: 30px; text-decoration: none; color: var(--text-light); font-weight: 500; }
.back-link:hover { color: var(--primary); }

/* Google Compliance Box */
.google-box { background: #f0fdf4; border: 1px solid #bbf7d0; padding: 20px; border-radius: var(--radius); margin: 20px 0; color: #166534; }
.warning-box { background: #fff1f2; border: 1px solid #fecdd3; padding: 20px; border-radius: var(--radius); margin: 20px 0; color: #9f1239; }

footer { background-color: var(--bg-light); padding: 50px 20px; text-align: center; margin-top: auto; border-top: 1px solid #e2e8f0; }
.footer-links { display: flex; justify-content: center; gap: 25px; flex-wrap: wrap; margin-bottom: 25px; }
.footer-links a { color: var(--text-light); text-decoration: none; font-size: 0.9rem; font-weight: 500; }
.footer-links a:hover { color: var(--dark); }
.copyright { font-size: 0.8rem; color: #94a3b8; }