/* ==========================
   BASE
========================== */
body {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

section {
    margin-top: 40px;
}

p {
    margin-bottom: 15px;
}

h1 {
    font-size: 30px;
    margin-bottom: 20px;
}

h2 {
    font-size: 24px;
    margin-bottom: 40px; /* FIXED */
}

h3 {
    margin-bottom: 10px;
}

ul {
    padding-left: 20px;
}

/* ==========================
   FORM ELEMENTS
========================== */
input, textarea, select {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
}

.field-help {
    margin-top: 0.6px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #555;
}

/* ==========================
   BUTTON SYSTEM
========================== */

/* Base button */
.btn {
    display: inline-block;
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

/* Primary (main action) */
.btn-primary {
    background: #000;
    color: #fff;
}

.btn-primary:hover {
    opacity: 0.85;
}

/* Secondary (navigation / admin) */
.btn-secondary {
    background: #eee;
    color: #000;
}

.btn-secondary:hover {
    background: #ddd;
}

/* Inline utility button (like dashboard shortcut) */
.btn-inline {
    margin-bottom: 20px;
}

/* ==========================
   HEADER
========================== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #ccc;
}

.logo a {
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

/* ==========================
   MENU
========================== */
.menu-toggle {
    width: 25px;
    cursor: pointer;
}

.menu-toggle div {
    height: 3px;
    background: #000;
    margin: 5px 0;
}

.menu {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background: #111;
    padding-top: 60px;
    transition: right 0.3s ease;
    z-index: 1000;
}

.menu a {
    display: block;
    margin-bottom: 20px;
    text-decoration: none;
    color: #fff; /* FIXED visibility */
    font-size: 16px;
    padding: 0 20px;
}

.menu.active {
    right: 0;
}

/* ==========================
   LAYOUT HELPERS
========================== */
.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

.section {
    margin-bottom: 20px;
}

.clarity {
    margin-top: 40px;
}

/* ==========================
   POLICY BOX
========================== */
.policy-box {
    background: #e9f5ff;
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
    font-size: 14px;
}

/* ==========================
   PRICING (FUTURE SAFE)
========================== */
.pricing-preview {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.pricing-preview div {
    text-align: center;
    padding: 10px;
    border: 1px solid #ccc;
    width: 30%;
}

.pricing-preview .highlight {
    border: 2px solid #000;
}

/* ==========================
   FOOTER
========================== */
.footer {
    background-color: #ffffff;
    padding: 20px 40px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 10px;
}

.footer-copy {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.footer-center {
    text-align: center;
    max-width: 400px;
}

.footer-center p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #77856B;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.footer-nav a:hover {
    opacity: 0.7;
}

/* ==========================
   UTILITIES
========================== */
.small {
    font-size: 12px;
    color: #666;
}