/* Footer */
.footer {
    background: #2c3e50 !important;
    color: white;
    padding: 60px 0 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

/* Footer Sections */
.footer-section {
    margin-bottom: 30px;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #667eea;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

/* Footer Links Row */
.footer-links-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    width: 100%;
    margin-bottom: 30px;
}

.footer-links-row .footer-section {
    align-items: center;
    text-align: center;
    margin-bottom: 0;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
    margin-top: 20px;
}

.footer-bottom a {
    color: #667eea;
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-content {
        gap: 30px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-section {
        max-width: 100%;
    }
    
    .footer-links-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

/* Footer support links styling */
.footer-support-link {
    color: white !important;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-support-link:hover {
    color: #667eea !important;
    text-decoration: underline;
}

/* Make the support section paragraph have proper spacing */
.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Container for the support links to put them on same line */
.footer-support-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
} 