 * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
        body { overflow-x: hidden; background-color: #f4f6f9; }
       /* Navbar (Consistent with Homepage) */
        .navbar { background-color: #aaacaf; color: #fff; padding: 15px 20px; position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }
        .navbar .container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
        .navbar .logo img { height: 70px; width: auto; object-fit: contain; border-radius: 50px;}
        .navbar .nav-links { display: flex; gap: 20px; }
        .navbar .nav-links a { color: #fff; text-decoration: none; font-size: 1rem; transition: color 0.3s ease; }
        .navbar .nav-links a:hover { color: #ffd700; }
        .navbar .contact-btns { display: flex; gap: 10px; align-items: center; }
        .navbar .contact-btns a { padding: 8px 15px; border-radius: 5px; text-decoration: none; font-size: 0.9rem; transition: background-color 0.3s ease; }
        .navbar .call-btn { background-color: #28a745; color: #fff; }
        .navbar .whatsapp-btn { background-color: #25d366; color: #fff; }
        .navbar .call-btn:hover, .navbar .whatsapp-btn:hover { opacity: 0.9; }
        .menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: #fff; }

        /* Floating Buttons for Mobile */
        .floating-buttons { 
            display: none; 
            position: fixed; 
            bottom: 20px; 
            right: 20px; 
            z-index: 1000; 
            flex-direction: column; 
            gap: 10px; 
        }
        .floating-buttons a { 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            width: 50px; 
            height: 50px; 
            border-radius: 50%; 
            text-decoration: none; 
            color: #fff; 
            font-size: 1.2rem; 
            transition: transform 0.3s ease, opacity 0.3s ease; 
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
        }
        .floating-buttons .call-btn { background-color: #28a745; }
        .floating-buttons .whatsapp-btn { background-color: #25d366; }
        .floating-buttons a:hover { transform: scale(1.1); opacity: 0.9; }

        /* FAQ Section */
        .faq-section { padding: 80px 20px 60px; background-color: #f4f6f9; max-width: 1200px; margin: 0 auto; padding-top: 130px; } /* Increased padding-top to 130px to clear the taller navbar */
        .faq-section h1 { font-size: 2.5rem; color: #1a2a44; text-align: center; margin-bottom: 40px; position: relative; padding-bottom: 10px; }
        .faq-section h1::after { content: ''; width: 50px; height: 3px; background-color: #ffd700; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); }
        .faq-category { margin-bottom: 40px; }
        .faq-category h2 { font-size: 1.8rem; color: #1a2a44; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
        .faq-category h2::after { content: ''; width: 40px; height: 3px; background-color: #ffd700; position: absolute; bottom: 0; left: 0; }
        .faq-item { background-color: #fff; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); margin-bottom: 20px; overflow: hidden; }
        .faq-question { padding: 15px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 1.1rem; font-weight: 600; color: #1a2a44; background-color: #f9f9f9; transition: background-color 0.3s ease; }
        .faq-question:hover { background-color: #e6e6e6; }
        .faq-question::after { content: '+'; font-size: 1.5rem; color: #ffd700; }
        .faq-question.active::after { content: '−'; }
        .faq-answer { display: none; padding: 20px; font-size: 1rem; color: #333; line-height: 1.6; }
        .faq-answer.active { display: block; }

        /* Footer */
        .footer {
            background-color: #1a2a44;
            color: #fff;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 20px;
        }
        .footer .footer-part {
            flex: 1;
            min-width: 250px;
            text-align: left;
        }
        .footer .footer-part.logo-address img {
            height: 50px;
            margin-bottom: 10px;
        }
        .footer .footer-part.logo-address p {
            margin: 5px 0;
            font-size: 0.9rem;
        }
        .footer .footer-part.contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        .footer .footer-part.contact-info p {
            margin: 5px 0;
        }
        .footer .footer-part.contact-info a {
            color: #00aaff;
            text-decoration: none;
        }
        .footer .footer-part.contact-info a:hover {
            color: #ffd700;
        }
        .footer .footer-part.map iframe {
            width: 100%;
            height: 200px;
            border: 0;
            border-radius: 10px;
        }
        .footer .footer-part.links a {
            color: #fff;
            text-decoration: none;
            margin-right: 15px;
            display: inline-block;
        }
        .footer .footer-part.links a:hover {
            color: #ffd700;
        }

        /* Animations */
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

        /* Responsive Design */
        @media (max-width: 768px) {
            .navbar .nav-links { 
                display: none; 
                flex-direction: column; 
                position: absolute; 
                top: 60px; 
                left: 0; 
                width: 100%; 
                background-color: #1a2a44; 
                padding: 20px; 
                text-align: center; 
            }
            .navbar .nav-links.active { display: flex; }
            .navbar .contact-btns { 
                display: flex;
                flex-direction: row; 
                gap: 10px; 
            }
            .navbar .contact-btns.active { 
                position: static; 
                padding: 10px 0; 
            }
            .menu-toggle { display: block; }
            .floating-buttons { display: flex; }
            .faq-section { padding-top: 100px; } /* Adjusted for mobile to match navbar height */
            .faq-section h1 { font-size: 1.8rem; }
            .faq-category h2 { font-size: 1.5rem; }
            .faq-question { font-size: 1rem; }
            .faq-answer { font-size: 0.9rem; }
            .navbar .logo img { height: 50px; }
            .footer {
                flex-direction: column;
                text-align: center;
            }
            .footer .footer-part {
                min-width: 100%;
            }
            .footer .footer-part.map iframe {
                height: 150px;
            }
            .footer .footer-part.links a {
                margin: 0 10px 10px 0;
            }
        }

        /* Schema Markup for SEO */
        .schema-hidden { display: none; }