.disclaimer-text{
    color: #fff!important;
    font-size: 12px!important;
    font-weight: 400!important;
    line-height: 1.5!important;
    margin-top: 10px!important;
    margin-bottom: 10px!important;
    text-align: center!important;
}

/* CORPORATE HEADQUARTERS WHITE TEXT FIX */
.site-footer .footer-section:first-child,
.site-footer .footer-section:first-child *,
.site-footer .footer-section:first-child h2,
.site-footer .footer-section:first-child ul,
.site-footer .footer-section:first-child ul li,
.site-footer .footer-section:first-child ul li *,
.site-footer .footer-section:first-child p,
.site-footer .footer-section:first-child span {
    color: #ffffff !important;
}

.site-footer .footer-section:first-child h2 {
    color: #ff9500 !important; /* Keep header orange */
}

.site-footer .footer-section:first-child ul li a {
    color: #ffffff !important;
}

.site-footer .footer-section:first-child ul li a:hover {
    color: #ff9500 !important;
}

/* Ensure all footer text is white */
.site-footer,
.site-footer *:not(h2) {
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .disclaimer-text { font-size: 10px!important; }
}

@media (max-width: 576px) {
    .disclaimer-text { font-size: 8px!important; }
}

.site-footer {
    background: var(--primary);
    color: #fff;
    padding: 3rem 0 1.5rem 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    display: none !important;
}

.site-footer, .site-footer * {
    position: relative;
    z-index: 1;
}

.site-footer a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    padding: 0 2px;
    border-radius: 2px;
}

.site-footer a:hover, .site-footer a:focus {
    color: #fff;
    background: var(--primary-light);
    text-decoration: none;
}

/* Footer styles */
.site-footer h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.site-footer .footer-section ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.site-footer .footer-section ul li {
    margin-bottom: 0.5rem;
}

.site-footer .footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer .footer-section ul li a:hover {
    color: var(--primary-light);
}

/* Back to top button styles */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.back-to-top-text {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #fff;
    white-space: nowrap;
}

/* High contrast mode support */
@media (prefers-contrast: more) {
    .site-footer {
        background: #000000 !important;
        color: #ffffff !important;
    }
    
    .site-footer a {
        color: #ffffff !important;
        border: 1px solid #ffffff !important;
    }
    
    .back-to-top {
        background: #000000 !important;
        border: 2px solid #ffffff !important;
    }
} 