        /* ====== FOOTER STYLES ====== */
        .goldstadt-footer {
            background-color: #862220;
            color: #F8EEEF;
            padding: 30px 0 0;
        }

        .footer-main {
            margin-bottom: 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr 1.5fr; /* First column is 2x, second is 1x, third and fourth are 1.5x each */
            gap: 30px;
        }

        .footer-col h4 {
            color: #D7B263;
            margin-bottom: 20px;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: #D7B263;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo .logo {
            height: 50px;
            margin-right: 15px;
        }

        .footer-logo .company-name h3 {
            color: #F8EEEF;
            margin: 0 0 5px;
            font-size: 1.5rem;
        }

        .footer-logo .tagline {
            color: #D7B263;
            margin: 0;
            font-style: italic;
            font-size: 0.9rem;
        }

        .footer-description {
            line-height: 1.6;
            margin-bottom: 25px;
            color: #F8EEEF;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background-color: #D7B263;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none; /* ADDED THIS LINE TO FIX THE ISSUE */
        }

        .social-link:hover {
            background-color: #F8EEEF;
            transform: translateY(-3px);
        }

        .social-link:hover i {
            color: #862220;
        }

        .social-link i {
            color: #862220;
            font-size: 20px;
            transition: color 0.3s ease;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: #F8EEEF;
            text-decoration: none;
            transition: color 0.3s ease;
            display: inline-block;
        }

        .footer-col ul li a:hover,
        .footer-col ul li a.active {
            color: #D7B263;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .contact-item i {
            width: 20px;
            height: 20px;
            margin-right: 12px;
            flex-shrink: 0;
            color: #D7B263;
        }

        .contact-item a {
            color: #F8EEEF;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: #D7B263;
        }

        .footer-bottom {
            border-top: 1px solid rgba(215, 179, 99, 0.3);
            padding: 20px 0;
            text-align: center;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            margin: 0;
            color: #F8EEEF;
            font-size: 0.9rem;
        }

        .footer-legals {
            display: flex;
            gap: 20px;
        }

        .footer-legals a {
            color: #F8EEEF;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-legals a:hover {
            color: #D7B263;
        }

        /* ====== FOOTER RESPONSIVE STYLES ====== */
        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr; /* 2 columns on medium screens */
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr; /* Single column on small screens */
                gap: 20px;
            }
            
            .footer-bottom-content {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            
            .footer-legals {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .footer-logo {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-logo .logo {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .contact-item {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-item i {
                margin-right: 0;
                margin-bottom: 8px;
            }
        }