/* ============================================================
   Domain: benitahbhero.com
   Template: business
   Generated: 2026-05-14 02:00:01
   Version: 0
============================================================ */

:root {
    --primary-color: #00aaff;
    --secondary-color: #005580;
    --accent-color: #ff6b00;
    --header-bg-color: #f6f5f4;
    --footer-bg-color: #000000;
    --body-bg-color: #8ff0a4;
    --text-color: #1a2639;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Inter', sans-serif;
}

body {
    font-family: 'Inter', 'Inter', sans-serif;
    background-color: var(--body-bg-color);
    color: var(--text-color);
}

/* Buttons */
.btn, .btn-primary, a.btn, a.btn-primary {
    border-radius: 8px !important;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

/* Cards */
.card, .service-card {
    border-radius: 12px;
}

/* Header & Footer */
header { background: var(--header-bg-color) !important; }
footer { background: var(--footer-bg-color) !important; }

/* Sticky Footer */
html, body { height: 100%; margin: 0; padding: 0; }
body { display: flex; flex-direction: column; min-height: 100vh; }
.main-content { flex: 1; }
.footer { margin-top: auto; }

