#universal-footer {
    background-color: #1a2533;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    font-family: Arial, sans-serif;
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: inherit;
    z-index: 99;
}

#universal-footer * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#universal-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#universal-footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

#universal-footer a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4CAF50;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

#universal-footer a:hover {
    color: #45a049;
    text-decoration: underline;
}

#universal-footer svg {
    width: 24px;
    height: 24px;
    stroke: #4CAF50;
    stroke-width: 2;
    fill: none;
}

#universal-footer-copyright {
    font-size: 0.85rem;
    opacity: 0.7;
    color: white;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    #universal-footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}