body {
    font-size: 16px;
    line-height: 1.6;
}

/* Headings */
h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

/* Paragraph spacing */
p {
    margin-bottom: 15px;
}

/* Section spacing */
.section {
    padding: 50px 0;
}
/* Container */
.container {
    width: 92%;
    max-width: 1100px;
    margin: auto;
}

/* HEADER */
.header {
    background: white;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

/* Logo */
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-area img {
    height: 155px;
}

.logo-text strong {
    display: block;
    font-size: 16px;
}

.logo-text span {
    font-size: 12px;
    color: #777;
}

/* Nav */
.nav-links {
    display: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
}

/* CTA */
.header-cta {
    text-align: right;
}

.header-cta span {
    display: block;
    font-size: 11px;
    color: #777;
}

.header-cta a {
    color: #c40000;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
}

/* Desktop */
@media(min-width: 768px) {
    .nav-links {
        display: flex;
    }
}.nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.nav img {
    height: 45px;
}

.cta-top {
    color: white;
    font-weight: bold;
    text-decoration: none;
    background: #c40000;
    padding: 10px 15px;
    border-radius: 5px;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url('https://images.unsplash.com/photo-1603791440384-56cd371ee9a7');
    color: white;
    text-align: center;
    padding: 60px 15px;
}

.hero h1 {
    font-size: 28px;
}

.hero p {
    font-size: 16px;
}

/* Sections */

.section:nth-child(even) {
    background: #fafafa;
}
.section {
    padding: 40px 0;
}

.section h2 {
    font-size: 22px;
}

.section.dark {
    background: #111;
    color: white;
}

/* Cards */
.card {
    background: white;
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 28px;
    background: #e00000;
    color: white;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(224, 0, 0, 0.3);
    transition: all 0.2s ease;
}

/* Hover effect (desktop) */
.btn:hover {
    background: #b80000;
    transform: translateY(-2px);
}

/* Secondary button (make it red too but outlined) */
.btn.secondary {
    background: white;
    color: #e00000;
    border: 2px solid #e00000;
}
/* Footer */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

/* 🚨 Sticky Mobile Call Bar */
.mobile-call {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #c40000;
    text-align: center;
    z-index: 999;
}

.mobile-call a {
    display: block;
    color: white;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

/* Add spacing so content isn't hidden behind bar */
body {
    padding-bottom: 70px;
}

/* 💻 Desktop Improvements */
@media(min-width: 768px) {

    .nav {
        flex-direction: row;
        justify-content: space-between;
    }

    .hero h1 {
        font-size: 40px;
    }

    .btn {
        display: inline-block;
        width: auto;
    }

    .mobile-call {
        display: none;
    }
}