/*
Theme Name: Altivida Consulting
Author: Altivida
Description: Custom investment landing page theme
Version: 1.0
*/
 /* Footer */
        .footer {
            background: var(--dark-brown);
            color: rgba(255, 255, 255, 0.7);
            padding: 50px 0;
            text-align: center;
        }

        .footer-content {
            margin-bottom: 25px;
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 35px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .footer-links a {
            color: var(--copper);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .footer-links a:hover {
            color: var(--orange);
        }

