.main-footer {
    color: var(--light-text);
  background: linear-gradient(135deg, #010224fa 1%, #012764 80%);
  
    padding: 2rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Top Section */
.footer-top {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.state-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.state-links span {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.state-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.state-buttons a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    position: relative;
}

.state-buttons a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--light-text);
    transition: width 0.3s ease;
}

.state-buttons a:hover::after {
    width: 100%;
}

/* Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
}

.footer-left,
.footer-right {
    flex: 1;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-top h3 {
        font-size: 1.3rem;
    }
    
    .state-buttons {
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .footer-left,
    .footer-right {
        text-align: center;
    }
}