#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 60px;
    background-color: #f4f9fd;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
    height: 75px;
}

#header a img{
    width: 250px;
    height: 75px;
}

/* NAVBAR */
#navbar {
    display: flex;
    justify-content: center;
    list-style: none;
    align-items: center;
    gap: 5px;
    position: relative;
}

#navbar li {
    list-style: none;
    position: relative;
    padding: 0; 
}

#navbar li a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
    color: #4ab2a8;
    transition: 0.3s ease;
    padding: 12px 20px;
    display: block;
}

/* Hover & Active Styles */
#navbar li a:hover,
#navbar li a.active {
    color: #1d71b8 !important;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: '';
    width: 30%;
    height: 2px;
    background-color: #1d71b8 !important;
    position: absolute;
    bottom: 6px;
    left: 20px;
}

/* Mobile nav + spacing classes */
#mobile {
    display: none;
    align-items: center;
}

#close {
    display: none;
}

footer{
    background-color: #f4f9fd;
    color: #000000;
    display: flex;
    flex-direction: column; /* Change from row to column to stack items */
    align-items: center; /* Center everything horizontally */
    height: 100px;
}

footer .columns {
    display: flex; /* Display the columns in a row */
    justify-content: space-between; /* Space between columns */
    width: 100%; /* Full width or keep it as needed */
    max-width: 960px;
    text-align: center;
}

footer .columns > div {
    flex: 1; /* Equal width for all columns */
}

footer .col{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

footer .follow{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

footer .col h4{
    font-size: 14px;
    font-weight: 300;
    padding-bottom: 7px;
    text-transform: uppercase;
}

footer .follow h4{
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 6px;
    padding-bottom: 7px;
    text-transform: uppercase;
}

footer .col p{
    font-size: 13px;
    padding-bottom: 10px;
    margin: 0 0 0 0;
}

footer .col a{
    font-size: 13px;
    color: #000000;
    text-decoration: none;
    padding-bottom: 10px;
}


footer .col a:hover{
    color: #1827f3;
    cursor: pointer;
    text-decoration: underline;
}

footer .copyright{
    text-align: center;
    font-size: 0.8rem;
    color: #000;
}


/* --- TOUCH TARGET OPTIMIZATION --- */
.social-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;  /* Minimum required by Google */
    height: 48px; /* Minimum required by Google */
    margin: 0 4px; /* Adds space so you don't accidentally hit the wrong icon */
    font-size: 1.5rem; /* Keeps the icon look professional */
    transition: transform 0.2s;
}

.social-row a:hover {
    transform: scale(1.1);
}

/* If your social row is in the footer, ensure it's centered for mobile */
.social-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0;
}