html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

header {
    width: 100%;
}

.top-bar {
    background-color: #f26522;
    text-align: center;
    padding: 10px 0;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.header-main {
    padding: 10px 20px;
    background-color: white;
    border-bottom: 1px solid #ddd;
}

.contact-info {
    font-size: 12px;
    color: gray;
    text-align: center;
    padding-bottom: 10px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.logo-image {
    width: 100px;
    height: auto;
}

.logo-text h1 {
    font-size: 20px;
    color: #f26522;
    margin-bottom: 5px;
    text-align: center;
}

.logo-text p {
    font-size: 12px;
    color: gray;
    text-align: center;
}

.icon-bar {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
}

    .icon-bar button {
        font-size: 24px;
        background-color: #f26522;
        color: white;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

        .icon-bar button:hover {
            background-color: #d35400;
        }

@media (min-width: 768px) {
    /* Desktop styles */
    .header-main {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .contact-info {
        text-align: right;
        padding-bottom: 0;
    }

    .logo {
        flex-direction: row;
    }

    .logo-text h1 {
        font-size: 24px;
    }

    .icon-bar {
        margin-bottom: 0;
        justify-content: flex-end;
    }
}