* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #2a9d8f;
            --primary-dark: #21867a;
            --primary-light: rgba(42, 157, 143, 0.1);
            --secondary-color: #e76f51;
            --text-dark: #333333;
            --text-medium: #555555;
            --text-light: #777777;
            --background-light: #f8f9fa;
            --white: #ffffff;
            --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
            --transition-slow: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --transition-normal: 0.3s ease;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: var(--background-light);
            line-height: 1.6;
            padding-top: 70px; /* To accommodate fixed navbar */
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Navbar Styles */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: var(--primary-color);
            padding: 0 20px;
            width: 100%;
            position: fixed;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            height: 70px;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background-color: rgba(42, 157, 143, 0.95);
            backdrop-filter: blur(5px);
            height: 60px;
        }

        /* Logo Styles */
        .logo {
            display: flex;
            align-items: center;
            z-index: 1002; /* Keep logo above overlay */
        }

        .logo a {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: white;
            font-weight: bold;
            font-size: 24px;
            transition: all 0.3s ease;
        }

        .logo-img {
            width: 40px;
            height: 40px;
            margin-right: 10px;
            border-radius: 50%;
            object-fit: cover;
        }

        .logo a:hover {
            opacity: 0.9;
            transform: scale(1.02);
        }

        /* Desktop Menu Styles */
        .menu {
            list-style-type: none;
            margin: 0;
            padding: 0;
            display: flex;
            transition: all 0.3s ease;
        }

        .menu li {
            position: relative;
        }

        .menu a {
            display: block;
            color: white;
            text-align: center;
            padding: 25px 16px;
            text-decoration: none;
            transition: all 0.2s ease;
            font-weight: 500;
        }

        .scrolled .menu a {
            padding: 20px 16px;
        }

        .menu a:hover {
            background-color: var(--primary-dark);
            text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
        }

        /* Dropdown Styles */
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 200px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 4px;
            overflow: hidden;
            transform: translateY(10px);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .dropdown:hover .dropdown-content {
            display: block;
            transform: translateY(0);
            opacity: 1;
        }

        .dropdown-content a {
            color: #333;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a:hover {
            background-color: #f5f5f5;
            color: #2a9d8f;
        }

        .dropdown:after {
            content: "▼";
            font-size: 10px;
            color: white;
            position: absolute;
            right: 5px;
            top: 25px;
            transition: transform 0.3s ease;
        }

        .scrolled .dropdown:after {
            top: 20px;
        }

        .dropdown:hover:after {
            transform: rotate(180deg);
        }

        /* Login & Signup Buttons */
        .auth-buttons {
            display: flex;
            align-items: center;
        }

        .login-btn {
            display: flex;
            align-items: center;
            background-color: var(--secondary-color);
            color: white;
            padding: 8px 18px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            margin-left: 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .login-btn:hover {
            background-color: #e05d3d;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        .login-btn i {
            margin-right: 8px;
        }

        .signup-btn {
            display: flex;
            align-items: center;
            background-color: transparent;
            color: white;
            padding: 8px 18px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid white;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            margin-left: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .signup-btn:hover {
            background-color: white;
            color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        .signup-btn i {
            margin-right: 8px;
        }

        /* Menu Toggle Button */
        .menu-toggle {
            display: none;
            background-color: transparent;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            z-index: 1002; /* Above overlay */
            transition: all 0.3s ease;
            position: relative;
            padding: 10px;
            width: 44px;
            height: 44px;
            border-radius: 4px;
        }

        .menu-toggle:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .menu-toggle:focus {
            outline: none;
        }

        /* Animated Hamburger Icon */
        .hamburger {
            width: 24px;
            height: 20px;
            position: relative;
            margin: 0 auto;
            transform: rotate(0deg);
            transition: .5s ease-in-out;
            cursor: pointer;
        }

        .hamburger span {
            display: block;
            position: absolute;
            height: 2px;
            width: 100%;
            background: white;
            border-radius: 4px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }

        .hamburger span:nth-child(1) {
            top: 0px;
            width: 80%;
            right: 0;
            left: auto;
        }

        .hamburger span:nth-child(2), .hamburger span:nth-child(3) {
            top: 9px;
        }

        .hamburger span:nth-child(4) {
            top: 18px;
            width: 80%;
            right: 0;
            left: auto;
        }

        .hamburger.open span:nth-child(1) {
            top: 9px;
            width: 0%;
            left: 50%;
        }

        .hamburger.open span:nth-child(2) {
            transform: rotate(45deg);
        }

        .hamburger.open span:nth-child(3) {
            transform: rotate(-45deg);
        }

        .hamburger.open span:nth-child(4) {
            top: 9px;
            width: 0%;
            left: 50%;
        }

        /* Mobile Menu Styles */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -280px; /* Start off-screen */
            width: 280px;
            height: 100%;
            background-color: var(--primary-color);
            z-index: 1001;
            transition: right 0.3s ease-in-out;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
            overflow-y: auto;
            padding-top: 70px; /* Space for navbar */
        }

        .mobile-menu.open {
            right: 0; /* Slide in */
        }

        /* Close button in mobile menu */
        .menu-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: transparent;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            z-index: 1002;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.2s ease;
        }

        .menu-close:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: rotate(90deg);
        }

        /* Mobile menu list styles */
        .mobile-menu-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu-list li {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-list a {
            display: block;
            padding: 15px 20px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.2s;
        }

        .mobile-menu-list a:hover {
            background-color: var(--primary-dark);
        }

        /* Mobile dropdown styles */
        .mobile-dropdown {
            position: relative;
        }

        .mobile-dropdown > a {
            position: relative;
        }

        .mobile-dropdown > a:after {
            content: "▼";
            font-size: 10px;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            transition: transform 0.3s;
        }

        .mobile-dropdown.active > a:after {
            transform: translateY(-50%) rotate(180deg);
        }

        .mobile-dropdown-content {
            display: none;
            background-color: rgba(0, 0, 0, 0.1);
        }

        .mobile-dropdown-content a {
            padding-left: 40px;
        }

        .mobile-dropdown.active .mobile-dropdown-content {
            display: block;
        }

        /* Mobile auth buttons */
        .mobile-auth-buttons {
            padding: 20px;
            display: flex;
            flex-direction: column;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 10px;
        }

        .mobile-auth-buttons .signup-btn,
        .mobile-auth-buttons .login-btn {
            margin: 5px 0;
            width: 100%;
            justify-content: center;
        }

        .mobile-auth-buttons .signup-btn {
            margin-bottom: 10px;
            margin-left: 0;
        }

        .mobile-auth-buttons .login-btn {
            margin-left: 0;
        }

        /* Overlay for mobile menu */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .menu-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .menu {
                display: none;
            }

            .auth-buttons {
                display: none;
            }

            .menu-toggle {
                display: block;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 0 15px;
            }

            .logo a {
                font-size: 18px;
            }

            .logo-img {
                width: 35px;
                height: 35px;
            }

            .mobile-menu {
                width: 250px;
                right: -250px;
            }
            .back-to-top {
                width: 40px;
                height: 40px;
                bottom: 20px;
                right: 20px;
                font-size: 16px;
            }
        }

        /* Add a placeholder main content for testing */
        .content {
            padding: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .content h1 {
            margin-bottom: 20px;
            color: var(--primary-dark);
        }

        .content p {
            margin-bottom: 15px;
            line-height: 1.6;
        }

        /* Active Menu */
        .menu a:hover, .menu a.active {
            background-color: var(--primary-dark);
            text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
        }
        .dropdown-content a:hover, .dropdown-content a.active {
            background-color: #f5f5f5;
            color: #2a9d8f;
        }
        .mobile-menu a:hover, .mobile-menu a.active {
            background-color: var(--primary-dark);
            text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
        }
        .mobile-dropdown-content a:hover, .mobile-dropdown-content a.active {
            background-color: #f5f5f5;
            color: #2a9d8f;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/api/placeholder/1200/400') no-repeat center center;
            background-size: cover;
            height: 300px;
            color: var(--white);
            display: flex;
            align-items: center;
            text-align: center;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .hero h1::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background-color: var(--secondary-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .hero p {
            font-size: 18px;
            margin-top: 25px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Section Styling */
        .section {
            padding: 80px 0;
        }

        /* Contact Info Section */
        .contact-section {
            background-color: var(--white);
            position: relative;
        }

        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            margin-top: -80px;
        }

        .contact-info-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 50px;
        }

        .info-card {
            flex: 1;
            min-width: 250px;
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: var(--shadow-md);
            padding: 30px;
            text-align: center;
            transition: var(--transition-normal);
            position: relative;
            z-index: 2;
        }

        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .info-icon {
            width: 70px;
            height: 70px;
            background-color: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
            color: var(--primary-color);
            transition: var(--transition-normal);
        }

        .info-card:hover .info-icon {
            background-color: var(--primary-color);
            color: var(--white);
            transform: rotateY(180deg);
        }

        .info-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .info-card p {
            color: var(--text-medium);
            margin-bottom: 15px;
        }

        .info-card a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition-normal);
            display: inline-block;
        }

        .info-card a:hover {
            color: var(--secondary-color);
            transform: translateX(5px);
        }

        /* Contact Form Section */
        .contact-form-section {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: var(--shadow-md);
            overflow: hidden;
        }

        .form-container {
            flex: 1;
            min-width: 350px;
            padding: 40px;
        }

        .map-container {
            flex: 1;
            min-width: 350px;
            min-height: 400px;
            position: relative;
            overflow: hidden;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .form-section-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-dark);
            position: relative;
            padding-bottom: 15px;
            display: inline-block;
        }

        .form-section-title::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--secondary-color);
            bottom: 0;
            left: 0;
        }

        .form-subtitle {
            color: var(--text-medium);
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--text-dark);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #e1e1e1;
            border-radius: 6px;
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            transition: var(--transition-normal);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px var(--primary-light);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .form-submit-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-normal);
            box-shadow: var(--shadow-sm);
            font-family: 'Poppins', sans-serif;
        }

        .form-submit-btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        /* Social Connect Section */
        .social-connect {
            background-color: var(--primary-light);
            padding: 60px 0;
            text-align: center;
        }

        .social-title {
            font-size: 28px;
            margin-bottom: 15px;
        }

        .social-text {
            max-width: 600px;
            margin: 0 auto 30px;
            color: var(--text-medium);
        }

        .social-icons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 30px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--white);
            color: var(--primary-color);
            font-size: 22px;
            text-decoration: none;
            transition: var(--transition-slow);
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .social-icon:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            transform: scale(0);
            transition: var(--transition-slow);
            z-index: -1;
            border-radius: 50%;
        }

        .social-icon:hover {
            color: var(--white);
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .social-icon:hover:before {
            transform: scale(1);
        }

        .facebook:before {
            background-color: #3b5998;
        }

        .twitter:before {
            background-color: #1da1f2;
        }

        .instagram:before {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .linkedin:before {
            background-color: #0077b5;
        }

        .youtube:before {
            background-color: #ff0000;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background-color: var(--white);
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: var(--secondary-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion {
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
        }

        .accordion-header {
            padding: 18px 20px;
            background-color: var(--white);
            cursor: pointer;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-weight: 600;
            color: var(--text-dark);
            transition: var(--transition-normal);
            border: 1px solid #e1e1e1;
        }

        .accordion-header:hover {
            background-color: var(--primary-light);
        }

        .accordion-header.active {
            background-color: var(--primary-color);
            color: var(--white);
            border-color: var(--primary-color);
            border-radius: 8px 8px 0 0;
        }

        .accordion-header i {
            font-size: 16px;
            transition: var(--transition-normal);
        }

        .accordion-header.active i {
            transform: rotate(180deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background-color: var(--white);
            border: 1px solid #e1e1e1;
            border-top: none;
            border-radius: 0 0 8px 8px;
        }

        .accordion-content-inner {
            padding: 20px;
            color: var(--text-medium);
        }
        
        /* Footer Styles */
        .footer {
            background-color: #263238;
            color: #f5f5f5;
            padding: 60px 0 0 0;
            font-family: 'Poppins', sans-serif;
        }
        
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 40px;
            padding: 0 15px;
        }
        
        .footer-section h3 {
            color: #fff;
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-section h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: #e76f51;
        }
        
        .footer-section p {
            margin-bottom: 15px;
            line-height: 1.6;
            color: #b0bec5;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #b0bec5;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            position: relative;
            padding-left: 15px;
        }
        
        .footer-links a:before {
            content: '›';
            position: absolute;
            left: 0;
            top: 0;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #e76f51;
            padding-left: 20px;
        }
        
        .footer-links a:hover:before {
            left: 5px;
        }
        
        /* Advanced Social Icons */
        .footer .social-icons-container {
            display: flex;
            gap: 20px;
            margin-top: 25px;
            justify-content: flex-start;
        }
        
        .footer .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: #37474f;
            color: #f5f5f5;
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .footer .social-icon:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            transform: scale(0);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: -1;
            border-radius: 50%;
        }
        
        .footer .social-icon i {
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .footer .social-icon:hover {
            transform: translateY(-7px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        
        .footer .social-icon:hover i {
            transform: scale(1.2);
        }
        
        .footer .social-icon:hover:before {
            transform: scale(1);
        }
        
        /* Social icon specific colors */
        .footer .social-icon.facebook:before {
            background-color: #3b5998;
        }
        
        .footer .social-icon.whatsapp:before {
            background-color: #25d366;
        }
        
        .footer .social-icon.phone:before {
            background-color: #4CAF50;
        }
        
        .footer .social-icon.instagram:before {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }
        
        /* Tooltip */
        .footer .social-icon .tooltip {
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%) scale(0);
            background-color: #000;
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            transition: all 0.3s ease;
            pointer-events: none;
        }
        
        .footer .social-icon .tooltip:after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -5px;
            transform: translateX(-50%);
            border-width: 5px 5px 0;
            border-style: solid;
            border-color: #000 transparent transparent;
        }
        
        .footer .social-icon:hover .tooltip {
            opacity: 1;
            transform: translateX(-50%) scale(1);
            top: -45px;
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            background-color: #37474f;
            color: white;
            border-radius: 4px 0 0 4px;
            font-family: 'Poppins', sans-serif;
        }
        
        .newsletter-form input::placeholder {
            color: #90a4ae;
        }
        
        .newsletter-form button {
            padding: 10px 15px;
            background-color: #2a9d8f;
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: #e76f51;
        }
        
        .footer-bottom {
            background-color: #1e272c;
            padding: 20px;
            text-align: center;
            margin-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-bottom p {
            margin: 0;
            color: #90a4ae;
            font-size: 14px;
        }
        
        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }
        
        .footer-bottom-links a {
            color: #90a4ae;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .footer-bottom-links a:hover {
            color: #e76f51;
        }

        .text-center {
            text-align: center;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 40px;
            }

            .section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 32px;
            }

            .info-card {
                min-width: 200px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0 15px;
                justify-content: space-between;
            }

            .menu {
                flex-direction: column;
                display: none;
                width: 100%;
                background-color: #2a9d8f;
                position: absolute;
                top: 70px;
                left: 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease-out, opacity 0.3s ease;
                opacity: 0;
                border-bottom-left-radius: 8px;
                border-bottom-right-radius: 8px;
            }

           .scrolled .menu {
                top: 60px;
            }

            .menu li {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .menu a {
                text-align: left;
                padding: 15px 20px;
            }

            .dropdown-content {
                position: static;
                background-color: rgba(0, 0, 0, 0.1);
                box-shadow: none;
                width: 100%;
                max-height: 0;
                padding: 0;
                overflow: hidden;
                transition: max-height 0.5s ease-out;
                transform: none;
                opacity: 1;
                border-radius: 0;
            }

            .dropdown-content a {
                padding-left: 40px;
                color: white;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }

            .dropdown:after {
                right: 20px;
            }

            .menu-toggle {
                display: block;
            }

            .dropdown.active .dropdown-content {
                max-height: 1000px;
                display: block;
            }

            .menu.show {
                display: block;
                max-height: 1000px;
                opacity: 1;
            }

            .dropdown:hover .dropdown-content {
                display: none;
            }

            .dropdown.active:after {
                transform: rotate(180deg);
            }

            .hero {
                height: 250px;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero p {
                font-size: 16px;
            }

            .contact-info-container {
                flex-direction: column;
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }

            .form-container,
            .map-container {
                min-width: 100%;
            }

            .map-container {
                height: 300px;
            }

            .social-icon {
                width: 50px;
                height: 50px;
                font-size: 18px;
            }
            
            .footer-container {
                flex-direction: column;
            }
            
            .footer-section {
                width: 100%;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
            }
            
            .footer .social-icons-container {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 28px;
            }

            .form-section-title {
                font-size: 24px;
            }

            .section-title {
                font-size: 24px;
            }

            .social-icons {
                flex-wrap: wrap;
                justify-content: center;
            }
        }
        /* Back to Top Button Styles */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    background-color: var(--primary-color);
    color: white;
    width: 50px; /* Set width */
    height: 50px; /* Set height */
    border-radius: 50%; /* Make it fully rounded */
    text-align: center;
    font-size: 24px; /* Adjust font size as needed */
    transition: all 0.3s ease;
    z-index: 1003;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    justify-content: center;
    align-items: center;
    display: flex;
}

/* Show the button */
.back-to-top.show {
    display: flex !important; /* Ensure it's displayed as flex for centering */
    opacity: 1;
    visibility: visible;
}

/* Hover effect */
.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}