body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.site-header {
    width: 100%;
}

.top-bar {
    background-color: #36454F;
    color: #fff;
    padding: 10px 0;
    font-size: 0.9em;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left i,
.top-bar-right i {
    margin-right: 5px;
}

.top-bar-right a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.top-bar-right a:hover {
    color: #ddd;
}

.top-bar-right .separator {
    color: #fff;
    margin: 0 10px;
}

.main-header {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.main-header .container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo img {
    max-width: 250px;
    height: auto;
    display: block;
}

.header-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-details {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item .icon-box {
    background-color: #c9a33a;
    color: #fff;
    border: 1px solid #dc3545;
    padding: 15px;
    border-radius: 5px;
    font-size: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-item .text-box {
    display: flex;
    flex-direction: column;
    font-size: 0.95em;
    color: #555;
}

.contact-item .text-box .number {
    font-size: 1.4em;
    font-weight: bold;
    color: #333;
}

.contact-item .text-box .address-line-1 {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
}

.tagline {
    font-size: 0.95em;
    line-height: 1.5;
    color: #555;
    text-align: left;
}

.navbar {
    background-color: #c9a33a;
    padding: 0;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
}

.navbar li a {
    display: block;
    padding: 15px 25px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.navbar li a:hover {
    background-color: #9f781d;
}

.navbar li .active {
    background-color: #755304;
}

@media (max-width: 992px) {
    .main-header .container {
        flex-direction: column;
        text-align: center;
    }

    .contact-details {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .tagline {
        text-align: center;
    }

    .navbar ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 5px;
    }

    .top-bar-right .separator {
        display: none;
    }

    .top-bar-right a {
        margin: 0 8px;
    }
}

@media (max-width: 576px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-item .icon-box {
        margin-bottom: 5px;
    }

    .navbar li a {
        padding: 10px 15px;
        font-size: 0.9em;
    }
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}



.contact-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item .icon-box {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-item .icon-box img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.text-box .number,
.text-box .fax,
.text-box .address-line-1,
.text-box .address-line-2 {
    white-space: nowrap;
}

.tagline {
    margin-top: 15px;
    max-width: 400px;
    margin-left: auto;
}

.tagline p {
    font-size: 0.9em;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-details {
        align-items: center;
    }

    .contact-item {
        flex-direction: row;
        justify-content: center;
    }

    .text-box {
        align-items: center;
    }

    .tagline {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .text-box {
        align-items: center;
    }

    .contact-item .icon-box {
        margin-bottom: 5px;
    }
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.top-bar-left img {
    height: 20px;
    width: auto;
}