/* Search Bar Styles */
.navbar-search {
    display: flex;
    align-items: center;
    margin-left: 24px;
    margin-right: 24px;
    background: #f0f8ff;
    border-radius: 20px;
    border: 1px solid #dbeafe;
    padding: 2px 8px;
    position: relative;
}

.navbar-search input[type="text"] {
    border: none;
    background: transparent;
    outline: none;
    font-size: 16px;
    padding: 6px 8px;
    width: 140px;
}

.navbar-search button {
    background: none;
    border: none;
    color: #517DAE;
    font-size: 18px;
    cursor: pointer;
    padding: 0 6px;
}

#searchSuggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-top: 6px;
    display: none;
    z-index: 1100;
}

#searchSuggestions.active {
    display: block;
}

#searchSuggestions div {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 0.9rem;
}

#searchSuggestions div:hover {
    background-color: #f0f8ff;
}

/* Footer Styles */
.site-footer {
    width: 100%;
    background: #517DAE;
    color: #fff;
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: block;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 8px 8px 8px;
    box-sizing: border-box;
}

.footer-col {
    width: 140px;
    margin: 0 0 12px 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
}

.footer-col.company {
    width: 370px;
}

.footer-title {
    font-size: 1.15rem;
    color: #fff;
    font-weight: 700;
    margin: 0 0 6px 0;
    line-height: 1.4;
    text-align: left;
}

.footer-col.company .company-title {
    font-size: 1.15rem;
    color: #fff;
    font-weight: 700;
    margin: 0 0 6px 0;
    line-height: 1.4;
    text-align: left;
    white-space: nowrap;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.7;
    text-align: left;
}

.footer-col ul li {
    margin: 0 0 4px 0;
    font-size: 1rem;
}

.footer-col .contact-info div {
    margin: 0 0 4px 0;
    line-height: 1.4;
    font-size: 1rem;
}

.footer-icons {
    margin-bottom: 8px;
    text-align: left;
}

.footer-icons a {
    color: #fff;
    text-decoration: none;
    margin-right: 10px;
    font-size: 1.1em;
}

.footer-note {
    text-align: center;
    background: #517DAE;
    color: #fff;
    font-size: 0.92em;
    opacity: 0.8;
    padding: 0 0 10px 0;
    margin: 0;
    width: 100%;
}

/* Office hours styling */
.office-hours {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 4px 0 0 0;
    line-height: 1.4;
}

.office-hours span {
    font-size: 0.92em;
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-container {
        padding: 18px 16px 8px 16px;
    }
    
    .footer-col.company {
        width: 100%;
        margin-bottom: 24px;
    }
    
    .footer-col {
        width: calc(50% - 12px);
    }
} 