.site-footer-standard {
    background-color: transparent; /* Shows page background */
    padding: 30px 0 40px; /* Vertical padding, more at bottom for space before wave */
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #333; /* Dark text for light background */
    border-top: 1px solid #e0e0e0; /* Subtle top border */
    position: relative; /* For z-index stacking if needed, though not sticky */
    z-index: 5; /* Above the wave initially if there's any overlap potential */
}

.footer-content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-left,
.footer-center,
.footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-center {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    /* To ensure it doesn't get too squished if other elements are wider */
    flex-grow: 1; /* Allows it to take up available space in the middle */
    min-width: 250px; /* Give it some minimum width */
}

.footer-center p {
    margin: 0;
    line-height: 1.4;
    font-size: 11px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.footer-left a,
.footer-right p,
.social-links a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}
.footer-right p {
    margin: 0;
}

.footer-left a:hover,
.social-links a:hover {
    color: #000;
}

.status-badge {
    background-color: #e0e0e0;
    color: #333;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 5px;
}

/* Responsive Adjustments for Footer */
@media (max-width: 768px) {
    .footer-content-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        text-align: center;
    }
    .footer-center {
        order: -1; /* Move "Designed by" to top on mobile */
        min-width: auto; /* Allow it to shrink */
    }
    .site-footer-standard {
        padding: 25px 0 30px;
        font-size: 11px;
    }
}
