* {
            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;
            --secondary-light: rgba(231, 111, 81, 0.1);
            --warning-color: #f4a261;
            --warning-light: rgba(244, 162, 97, 0.1);
            --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);
            --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.15);
            --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-img {
            height: 70px;
        }

        /* 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-img {
                height: 50px;
            }

            .mobile-menu {
                width: 250px;
                right: -250px;
            }
        }

        /* 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(135deg, rgba(42, 157, 143, 0.9), rgba(42, 157, 143, 0.6)), url('/api/placeholder/1200/400') no-repeat center center;
            background-size: cover;
            height: 300px;
            color: var(--white);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.3;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            position: relative;
            display: inline-block;
        }

        .hero h1::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background-color: var(--white);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .hero p {
            font-size: 18px;
            max-width: 600px;
            margin: 25px auto 0;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .last-updated {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.2);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px;
            margin-top: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(5px);
        }

        /* Main Content Layout */
        .main-content {
            padding: 60px 0;
            position: relative;
        }

        .terms-container {
            display: flex;
            gap: 40px;
            position: relative;
        }

        /* Sidebar */
        .sidebar {
            width: 300px;
            position: sticky;
            top: 90px; /* Adjusted to account for the navbar */
            align-self: flex-start;
            max-height: calc(100vh - 120px); /* Adjusted to account for the navbar */
            overflow-y: auto;
        }

        .toc-container {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition-normal);
            border-top: 4px solid var(--primary-color);
        }

        .toc-container:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-5px);
        }

        .toc-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--primary-light);
        }

        .toc-list {
            list-style-type: none;
        }

        .toc-item {
            margin-bottom: 12px;
        }

        .toc-link {
            display: block;
            padding: 8px 12px;
            color: var(--text-medium);
            text-decoration: none;
            border-radius: 6px;
            transition: var(--transition-normal);
            position: relative;
            padding-left: 25px;
        }

        .toc-link:before {
            content: '\f105';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 8px;
            transition: var(--transition-normal);
        }

        .toc-link:hover, .toc-link.active {
            background-color: var(--primary-light);
            color: var(--primary-color);
            padding-left: 30px;
        }

        .toc-link:hover:before, .toc-link.active:before {
            left: 12px;
            color: var(--primary-color);
        }
        
        .help-card {
            background-color: var(--primary-light);
            padding: 25px;
            border-radius: 10px;
            margin-top: 30px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition-normal);
        }
        
        .help-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-5px);
        }
        
        .help-card h3 {
            font-size: 18px;
            color: var(--primary-color);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .help-card h3 i {
            margin-right: 10px;
        }
        
        .help-card p {
            color: var(--text-medium);
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        .help-btn {
            display: inline-block;
            padding: 8px 20px;
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            transition: var(--transition-normal);
        }
        
        .help-btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }

        /* Terms Content */
        .terms-content {
            flex: 1;
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: var(--shadow-sm);
            padding: 40px;
            transition: var(--transition-normal);
        }

        .terms-content:hover {
            box-shadow: var(--shadow-md);
        }

        .terms-section {
            margin-bottom: 50px;
            scroll-margin-top: 90px; /* Adjusted to account for the navbar */
        }

        .terms-section:last-child {
            margin-bottom: 0;
        }

        .section-title {
            font-size: 28px;
            color: var(--primary-color);
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--primary-light);
            position: relative;
        }

        .section-title::before {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: -1px;
            left: 0;
            border-radius: 3px;
        }

        .section-title span {
            color: var(--secondary-color);
            font-weight: 800;
            margin-right: 10px;
        }

        .section-subtitle {
            font-size: 22px;
            margin-top: 30px;
            margin-bottom: 20px;
            color: var(--text-dark);
            font-weight: 600;
        }

        .terms-text {
            color: var(--text-medium);
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.8;
        }

        .terms-list {
            padding-left: 20px;
            margin-bottom: 20px;
            color: var(--text-medium);
        }

        .terms-list li {
            margin-bottom: 10px;
            line-height: 1.7;
            position: relative;
            padding-left: 5px;
        }
        
        .important-box {
            background-color: var(--secondary-light);
            border-left: 4px solid var(--secondary-color);
            padding: 25px 30px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            position: relative;
        }

        .important-box::before {
            content: '\f06a';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 25px;
            left: -13px;
            background-color: var(--secondary-color);
            color: white;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .important-box p {
            margin-bottom: 0;
        }
        
        .warning-box {
            background-color: var(--warning-light);
            border-left: 4px solid var(--warning-color);
            padding: 25px 30px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            position: relative;
        }

        .warning-box::before {
            content: '\f071';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 25px;
            left: -13px;
            background-color: var(--warning-color);
            color: white;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .warning-box p {
            margin-bottom: 0;
        }

        .contact-box {
            background-color: var(--primary-light);
            padding: 30px;
            border-radius: 10px;
            margin-top: 30px;
            border: 1px solid rgba(42, 157, 143, 0.2);
        }

        .contact-box h3 {
            color: var(--primary-color);
            font-size: 20px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .contact-item:last-child {
            margin-bottom: 0;
        }

        .contact-icon {
            min-width: 40px;
            height: 40px;
            background-color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            margin-right: 15px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }

        .contact-text {
            color: var(--text-medium);
            line-height: 1.5;
        }

        /* 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 */
        .social-icons-container {
            display: flex;
            gap: 20px;
            margin-top: 25px;
            justify-content: flex-start;
        }
        
        .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);
        }
        
        .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%;
        }
        
        .social-icon i {
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            transform: translateY(-7px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        
        .social-icon:hover i {
            transform: scale(1.2);
        }
        
        .social-icon:hover:before {
            transform: scale(1);
        }
        
        /* Social icon specific colors */
        .social-icon.facebook:before {
            background-color: #3b5998;
        }
        
        .social-icon.whatsapp:before {
            background-color: #25d366;
        }
        
        .social-icon.phone:before {
            background-color: #4CAF50;
        }
        
        .social-icon.instagram:before {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }
        
        /* Tooltip */
        .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;
        }
        
        .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;
        }
        
        .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 {
            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;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .terms-container {
                flex-direction: column;
            }

            .sidebar {
                width: 100%;
                position: relative;
                top: 0;
                margin-bottom: 30px;
                max-height: none;
            }

            .toc-container {
                padding: 20px;
            }

            .hero h1 {
                font-size: 40px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0 15px;
                justify-content: space-between;
            }
            .logo-img {
                height: 50px;
            }

            .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;
            }

            .terms-content {
                padding: 30px;
            }

            .section-title {
                font-size: 24px;
            }

            .section-subtitle {
                font-size: 20px;
            }

            .main-content {
                padding: 40px 0;
            }
            
            .footer-container {
                flex-direction: column;
            }
            
            .footer-section {
                width: 100%;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
            }
            
            .social-icons-container {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .hero {
                height: 220px;
            }
            
            .hero h1 {
                font-size: 28px;
            }

            .hero p {
                font-size: 14px;
            }

            .last-updated {
                font-size: 12px;
                padding: 6px 15px;
            }

            .terms-content {
                padding: 20px;
            }

            .section-title {
                font-size: 22px;
            }

            .section-subtitle {
                font-size: 18px;
            }

            .important-box, .warning-box {
                padding: 20px;
            }

            .back-to-top {
                width: 40px;
                height: 40px;
                bottom: 20px;
                right: 20px;
                font-size: 16px;
            }
        }
        /* Contact Widget Container */
        .contact-widget {
            position: fixed;
            left: 20px;
            bottom: 20px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        /* Main Button */
        .contact-main-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #2a9d8f;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 10;
        }

        .contact-main-btn i {
            color: white;
            font-size: 24px;
            transition: all 0.3s ease;
        }

        .contact-main-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            background-color: #21867a;
        }

        .contact-main-btn.active i {
            transform: rotate(135deg);
        }

        /* Contact Options Container */
        .contact-options {
            position: absolute;
            bottom: 100%;
            left: 0;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            margin-bottom: 15px;
            opacity: 0;
            transform: translateY(20px);
            visibility: hidden;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .contact-options.active {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
            pointer-events: auto;
        }

        /* Individual Contact Options */
        .contact-option {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            transform: scale(0);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            pointer-events: none;
        }

        .contact-options.active .contact-option {
            transform: scale(1);
            pointer-events: auto;
        }

        /* Delay each option animation */
        .contact-options.active .contact-option:nth-child(1) {
            transition-delay: 0.1s;
        }

        .contact-options.active .contact-option:nth-child(2) {
            transition-delay: 0.2s;
        }

        .contact-options.active .contact-option:nth-child(3) {
            transition-delay: 0.3s;
        }

        .contact-option-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .contact-option-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.1);
            transform: scale(0);
            transition: all 0.3s ease;
            border-radius: 50%;
            z-index: -1;
        }

        .contact-option-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }

        .contact-option-btn:hover:before {
            transform: scale(1);
        }

        .contact-option-btn i {
            font-size: 20px;
            color: white;
        }

        /* WhatsApp Button */
        .contact-whatsapp {
            background-color: #25d366;
        }

        /* Messenger Button */
        .contact-messenger {
            background-color: #0084ff;
        }

        /* Call Button */
        .contact-call {
            background-color: #4CAF50;
        }

        /* Label for each option */
        .contact-option-label {
            background-color: white;
            color: #333;
            padding: 5px 15px;
            border-radius: 20px;
            margin-left: 10px;
            font-weight: 500;
            font-size: 14px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .contact-option:hover .contact-option-label {
            opacity: 1;
            transform: translateX(0);
        }

        /* Pulse animation for the main button */
        .pulse {
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(42, 157, 143, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(42, 157, 143, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(42, 157, 143, 0);
            }
        }

        /* For mobile screens */
        @media (max-width: 768px) {
            .contact-widget {
                left: 10px;
                bottom: 10px;
            }

            .contact-main-btn {
                width: 50px;
                height: 50px;
            }

            .contact-main-btn i {
                font-size: 20px;
            }

            .contact-option-btn {
                width: 40px;
                height: 40px;
            }

            .contact-option-btn i {
                font-size: 16px;
            }

            .contact-option-label {
                font-size: 12px;
                padding: 4px 10px;
            }
        }
        /* 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);
}