   .footer {
            background-color: #333;
            color: #ffffff;
            padding: 40px 0 20px 0;
            width: 100%;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-section {
            margin-bottom: 30px;
        }

        .footer-section h3 {
            color: #e74c3c;
            font-size: 18px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-left: 4px solid #e74c3c;
            padding-left: 12px;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #e74c3c;
        }

        .footer-links a::after {
            content: "•";
            margin-left: 15px;
            color: #666;
        }

        .footer-links a:last-child::after {
            content: "";
            margin-left: 0;
        }

        .rera-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }

        .rera-item {
            background-color: #555;
            padding: 12px 15px;
            border-radius: 4px;
            font-size: 13px;
            text-align: center;
            transition: background-color 0.3s ease;
        }

        .rera-item:hover {
            background-color: #e74c3c;
        }

        .disclaimer {
            font-size: 11px;
            line-height: 1.5;
            color: #bbb;
            text-align: justify;
            margin: 30px 0;
            padding: 20px;
            background-color: #444;
            border-radius: 4px;
            border-left: 4px solid #e74c3c;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin: 20px 0;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background-color: #e74c3c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: #c0392b;
            transform: translateY(-2px);
        }

        .copyright {
            text-align: center;
            font-size: 12px;
            color: #888;
            border-top: 1px solid #555;
            padding-top: 20px;
        }

        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            left: 20px;
            width: 50px;
            height: 50px;
            background-color: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            text-decoration: none;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
            z-index: 1000;
            transition: transform 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .footer-links {
                flex-direction: column;
                gap: 8px;
            }

            .footer-links a::after {
                content: "";
                margin-left: 0;
            }



            .social-icons {
                flex-wrap: wrap;
            }
        }