/* ============================================
   MONETORIES SHARED STYLES
   Used across all sub-pages (privacy, terms, etc.)
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #1e3a8a;
    --primary-dark: #1e2a5e;
    --primary-light: #3b5bdb;
    --accent: #10b981;
    --accent-dark: #059669;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --border: #e5e7eb;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

/* HEADER */
.site-header {
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 22px;
    box-shadow: 0 4px 10px rgba(30,58,138,0.3);
}
.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

/* MAIN CONTAINER */
.page-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
}

.back-link {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 14px;
}
.back-link:hover { text-decoration: underline; }

/* CONTENT CARD */
.content-card {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.content-card h1 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.content-card h2 {
    font-size: 22px;
    color: var(--primary);
    margin: 30px 0 15px;
    font-weight: 700;
}
.content-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin: 20px 0 10px;
    font-weight: 600;
}
.content-card p {
    margin-bottom: 15px;
    color: var(--text-medium);
}
.content-card ul {
    margin: 10px 0 15px 30px;
    color: var(--text-medium);
}
.content-card ul li { margin-bottom: 8px; }
.content-card a { color: var(--primary); }

.page-meta {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

/* FOOTER */
.site-footer {
    text-align: center;
    padding: 30px 20px;
    color: var(--text-light);
    font-size: 14px;
    background: white;
    margin-top: 40px;
    border-top: 1px solid var(--border);
}
.site-footer a {
    color: var(--primary);
    text-decoration: none;
    margin: 0 8px;
}
.site-footer a:hover { text-decoration: underline; }

/* FORMS (for contact, unsubscribe, do-not-sell) */
.form-section {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid var(--primary);
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30,58,138,0.1);
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.btn {
    background: linear-gradient(135deg, var(--primary), #2563eb);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30,58,138,0.4);
}
.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}
.btn-accent:hover {
    box-shadow: 0 8px 20px rgba(16,185,129,0.4);
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .content-card { padding: 30px 20px; }
    .content-card h1 { font-size: 28px; }
    .content-card h2 { font-size: 20px; }
}
