/* ==========================================================================
 Sticky Mobile Footer
 ========================================================================== */
.sticky-mobile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    border-top: 1px solid #eee;
}

.sticky-mobile-footer .btn {
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    /* Ensure it looks clickable */
}

/* Micro copy adjustments if needed, though bootstrap classes handle most */
.micro-copy {
    font-size: 0.85em;
    color: #777;
    margin-top: 5px;
}

/* Enhancing CTA buttons for better conversion */
.news .fold-link {
    padding: 10px 20px !important;
    font-size: 16px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.news .fold-link:hover {
    background: #4ab3ba !important;
    /* Slightly darker shade for hover */
    text-decoration: none;
    color: white;
}

/* ==========================================================================
 FAQ Styling (Accordion)
 ========================================================================== */
details {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

summary {
    background-color: #3b4b5c;
    /* Dark slate blue matching the reference */
    color: #ffffff;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    list-style: none;
    /* Hide default arrow */
    position: relative;
    transition: background-color 0.3s ease;
}

/* Hide default marker in Webkit/Chrome */
summary::-webkit-details-marker {
    display: none;
}

summary:hover {
    background-color: #2c3e50;
}

/* Custom Arrow Icon */
summary::after {
    content: '\f123';
    /* Ionicons chevron-down code (approx, varies by version) or use unicode */
    /* Let's use a simple unicode chevron for reliability if font fails, but icon font is linked */
    content: '\f3d0';
    /* ion-chevron-down in some versions, let's try generic CSS border arrow if needed but sticking to content for now */
    /* Safe fallback: Standard Ionicons v2 class is ion-chevron-down which is f123 often. Let's use the class in HTML or just CSS content string carefully. */
    /* Best approach for pure CSS without knowing exact char code mapping: */
    /* content: '▼'; */
}

/* Re-defining arrow with unicode for safety since font mapping varies */
summary::after {
    content: '▼';
    font-family: Arial, sans-serif;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

/* Rotate arrow when open */
details[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

details p {
    background-color: #ffffff;
    color: #333;
    padding: 20px;
    margin: 0;
    line-height: 1.6;
    font-size: 15px;
    border-top: 1px solid #f0f0f0;
}

/* Specific overrides for strong tags inside summary if they exist */
summary strong {
    font-weight: 700;
}


/* ==========================================================================
 Footer Updates
 ========================================================================== */

/* Logo Styling */
.footer-logo {
    max-width: 280px;
    /* Increased size significantly */
    height: auto;
    display: inline-block;
}

/* Make sure text aligns left on desktop for content col */
.content-col {
    text-align: left;
    padding-left: 30px;
    /* Add some breathing room between logo and text */
}

/* Copyright Styling */
.copyright-row {
    margin-top: 20px;
    opacity: 0.8;
}

.copyright-text {
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #e0e0e0;
}

/* Responsive Handling */
@media (max-width: 767px) {

    /* Stack layout on mobile */
    .logo-col {
        text-align: center;
        /* Center logo on mobile */
        margin-bottom: 20px;
    }

    .content-col {
        text-align: center;
        /* Center text on mobile */
        padding-left: 15px;
        /* Reset padding */
    }

    .footer-logo {
        max-width: 200px;
        /* Smaller logo on mobile but still prominent */
    }

    .social-bar {
        text-align: center !important;
        /* Force center icons on mobile */
    }
}


/* ==========================================================================
 Native Smooth Scrolling
 ========================================================================== */
html {
    scroll-behavior: smooth;
}

/* Ensure anchor targets account for fixed header offset */
:target {
    scroll-margin-top: 40px;
    /* Adjusted to less than header height to ensure overlap and no bleeding */
}