/* HEADER STYLES */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #041E42;
    font-family: 'Source Sans Pro', sans-serif;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-logo {
    height: 135px;
    height: clamp(90px, 8vw, 125px); 
    width: auto;
}

.header-title {
    line-height: 1.2;
}

.header-title .main-title {
    font-size: clamp(20px, 1.7vw, 28px);
    font-weight: bold;
    color: #ffffff;
}

.header-title .subtitle {
    font-size: 16px;
    color: #ffffff;
}

.header-right {
    display: flex;
    align-items: center;
}

.header-right a {
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
    font-size: clamp(16px, 1.4vw, 28px);
    padding: 0 15px;
    border-left: 1px solid #ffffff;
    height: 100%;
    display: flex;
    align-items: center;
}

.header-right a:first-child {
    border-left: none;
}

.header-right a:hover {
    color: #7b7b7b;
    text-decoration: underline;
}

.header-right i {
    margin-right: 6px;
}

/* Optional responsive: stack nav links on smaller screens */
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    .header-right {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
}

/* FOOTER STYLES */
footer {
    background: #041E42;
    color: #ffffff;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.footer-top a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    padding: 0 15px;
    border-left: 1px solid #ffffff;
    display: flex;
    align-items: center;
}

.footer-top a:first-child {
    border-left: none;
}

.footer-top a:hover {
    color: #dddddd;
}

.footer-top i {
    margin-right: 6px;
}

.footer-bottom {
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
    max-width: 1200px;
    margin: auto;
}

.footer-bottom a.intext {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom a.intext:hover {
    color: #dddddd;
}
