.hero-section .container {
    display: flex;         /* Alignment magic starts here */
    align-items: center;   /* Vertically centers the text with the logo */
    gap: 20px;             /* Adds space between the logo and the tagline */
    margin-bottom: 3px;
}

.hero-section .tagline {
    color: #ffab40;
    font: Roboto
    font-weight: bold;
    font-size: 28pt;
    letter-spacing: 1px;
    margin: 0;             /* Removes default paragraph spacing */
    white-space: nowrap;   /* Keeps the tagline on one line */
}

.hero-section a img {
    border: none;
    outline: none;
}

.hero-section .header-logo {
    height: 65px;
}

.hero-section .header-logo:hover {
    opacity: 0.8;
    cursor: pointer;
}

.hero-section .industry-nav ul {
    list-style-type: none; /* Removes the bullets */
    margin: 0;
    padding: 0;
    display: flex;         /* Makes the list horizontal */
    gap: 20px;             /* Adds space between the items */
    justify-content: center; /* Centers the whole menu (optional) */
}

.hero-section .industry-nav li {
    display: inline-block; /* Backup for older browsers */
    font-family: sans-serif;
    font-size: 12pt;
    color: #008dca;
    cursor: pointer;
    font: Verbana;
}
