/* Footer policy links styling */
.footer-links-secondary {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links-secondary ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.footer-links-secondary ul li {
    margin: 0 1rem;
}

.footer-links-secondary ul li a {
    color: var(--white);
    transition: color var(--transition-fast);
}

.footer-links-secondary ul li a:hover {
    color: var(--soft-gold);
}

/* Footer dropdown menu styles */
.footer-links .dropdown {
    position: relative;
}

.footer-dropdown-menu {
    display: none;
    list-style: none;
    padding-left: 15px;
    margin-top: 5px;
}

.footer-links .dropdown:hover .footer-dropdown-menu,
.footer-links .dropdown:focus-within .footer-dropdown-menu {
    display: block;
}

.footer-dropdown-menu li {
    margin-bottom: 8px;
}

.footer-dropdown-menu a {
    color: var(--medium-gray);
    transition: color var(--transition-fast);
}

.footer-dropdown-menu a:hover {
    color: var(--soft-gold);
}

/* Profile name style */
.profile-name {
    text-align: center;
    font-weight: 600;
    color: var(--navy-blue);
    margin-top: 10px;
    font-size: 1.2rem;
}
