.custom-footer {
    background: var(--primary);
    color: var(--white);
    padding: 2rem 0;
    font-family: 'Arial', sans-serif;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
}

.social-icon:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-info {
    text-align: center;
    width: 100%;
}

.footer-info p {
    margin: 0.5rem 0;
}

.legal-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: color 0.3s;
}

.legal-toggle:hover {
    color: var(--accent);
}

.legal-toggle .arrow {
    transition: transform 0.3s;
}

.legal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0 1rem;
}

.legal-content.active {
    max-height: 500px;
    padding: 1rem;
}

.legal-text {
    text-align: left;
    font-size: 0.9rem;
}

.legal-text h4 {
    margin-top: 0;
    color: var(--accent);
}

.legal-text hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0.5rem 0;
}