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

html, body {
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.5;
}

/* =========================
   CONTAINER
========================= */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

/* =========================
   HEADER (FULL WIDTH BG)
========================= */
.site-header {
    background: #1D2327;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* MAIN HEADER */
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
}

/* =========================
   LOGO
========================= */
.logo img {
    width: 160px;
    height: auto;
    display: block;
}

/* =========================
   MENU
========================= */
#menu {
    display: flex;
    gap: 20px;
    flex: 1;
    margin-left: 20px;
}

#menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

#menu a:hover {
    text-decoration: underline;
}

/* =========================
   CALL BUTTON
========================= */
.call-btn {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center;

    gap: 8px;

    background: #e74c3c;
    color: white;

    padding: 8px 14px;
    border-radius: 5px;

    text-decoration: none;
    font-size: 14px;
    line-height: 1;
}

.phone-icon {
    width: 18px;
    height: 18px;

    display: block !important;
    margin: 0;
    padding: 0;

    flex-shrink: 0;
}

.call-btn span {
    display: inline-block;
    line-height: 1;
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

.desktop-call {
    display: block;
}

/* =========================
   BURGER
========================= */
.burger {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    margin-left: 10px;
}

/* =========================
   HERO
========================= */
.hero {
    background-color: #2e3b2e;
    background-size: 100% auto;
    text-align: center;
    color: white;
    padding: 80px 20px;
}

/* =========================
   CONTENT (FLEX GROWS)
========================= */
.content {
     width: 100%;
    max-width: 1000px;
    margin: 20px auto;
    padding: 25px;
    background: white;
    border-radius: 10px;
    flex: 1;
}

/* =========================
   FOOTER (FULL WIDTH)
========================= */
footer {
    background: #1D2327;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: auto;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    #menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1D2327;
        margin: 0;
        padding: 10px 0;
    }

    #menu.active {
        display: flex;
    }

    #menu a {
        padding: 10px;
        border-top: 1px solid #444;
    }

    .burger {
        display: block;
    }

    .desktop-call {
        display: none;
    }

    .logo img {
        width: 130px;
    }

    .hero {
        background-size: cover;
        padding: 60px 15px;
    }
}