/* 1. Main Footer Styling */
.site-footer {
    background-color: #04846C; /* Dark background from image */
    color: #ffffff; /* Light grey text */
    padding: 60px 20px 20px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

/* 2. Three-Column Layout */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

/* 3. Headers (White & Bold) */
.footer-col h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
}

/* 4. Column 1: Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons img {
    width: 24px;  /* Adjust size of your icons here */
    height: 24px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-icons img:hover {
    opacity: 1;
}

/* 5. Column 2: Vertical Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

/* 6. Column 3: Contact Info */
.support-info .intro-text {
    margin: 0 0 15px 0;
}

.contact-row {
    display: flex;
    flex-direction: column; /* Stacks label and link */
    margin-bottom: 15px;
}

.contact-row span {
    font-weight: bold;
    color: #fff;
    font-size: 12px;
    margin-bottom: 4px;
}

.contact-row a {
    color: #ffffff;
    text-decoration: none;
}

.contact-row a:hover {
    color: #fff;
    text-decoration: underline;
}

/* 7. Copyright Section */
.footer-bottom {
    border-top: 1px solid #ffffff; /* The thin line above copyright */
    padding-top: 25px;
    text-align: center;
    font-size: 13px;
    color: #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
}
/* --- DARK MODE ADJUSTMENTS --- */
/* Ensures elements look good if the parent background is dark */
body.dark .site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
body.dark .social-icons a img {
    filter: invert(1) grayscale(100%); /* Turn icons whiteish */
}
body.dark .social-icons a:hover img {
    filter: none; /* Restore color on hover */
}