body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Header Container */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

/* Left Section */
.logo {
    font-size: 30px;
    font-weight: bold;
    color: #b10b0b;
}

.location {
    font-size: 12px;
    color: #777;
    margin-top: 2px;
}

/* Center Navigation */
.nav {
    display: flex;
    gap: 22px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
}

.nav a:hover {
    color: #28a745;
}

/* Right Call Button */
.call-btn {
    background: #28a745;
    color: #fff;
    padding: 7px 14px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
}

.call-btn:hover {
    background: #218838;
}