        /* Popup styles */
        .popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        .popup-content {
            background: white;
            padding: 20px;
            border-radius: 8px;
            width: 90%;
            max-width: 400px;
            position: relative;
        }
        .popup-content h2 {
            margin-top: 0;
            color: #333;
        }
        .popup-content input {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        .popup-content button {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            background: #007bff;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        .popup-content button:hover {
            background: #0056b3;
        }
        .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 20px;
            cursor: pointer;
        }
        .popup-content a {
            color: #007bff;
            text-decoration: none;
            display: block;
            text-align: center;
            margin-top: 10px;
        }
        .popup-content a:hover {
            text-decoration: underline;
        }
        .error-message {
            color: red;
            font-size: 14px;
            margin-top: 5px;
            display: none;
        }
        /* Language selector styles */
        .language-selector {
            position: relative;
            display: inline-block;
        }
        .dropdown-trigger {
            display: flex;
            align-items: center;
            padding: 5px 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            background: white;
            cursor: pointer;
        }
        .dropdown-trigger i {
            margin-right: 8px;
            color: #333;
        }
        .dropdown-flag {
            width: 20px;
            height: 20px;
            background-size: cover;
            margin-right: 8px;
        }
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 150px;
            background: white;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            z-index: 1000;
            max-height: 200px;
            overflow-y: auto;
        }
        .dropdown-menu.active {
            display: block;
        }
        .dropdown-option {
            display: flex;
            align-items: center;
            padding: 8px;
            cursor: pointer;
        }
        .dropdown-option:hover {
            background: #f0f0f0;
        }
        .dropdown-option img {
            width: 20px;
            height: 20px;
            margin-right: 10px;
        }
        .language-selector-mobile .dropdown-trigger {
            padding: 5px;
        }
        .language-selector-desktop .dropdown-menu {
            left: auto;
            right: 0;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .popup-content {
                max-width: 90%;
            }
        }
        /* Investment section styles */

         .about-us{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            border: solid rgba(255, 255, 255, 0.386);
            border-radius: 20px;
         }
            .about-content {
                flex: 1;
                min-width: 300px;
                max-width: 600px;
                margin-right: 20px;
            }
            .about-content h1 {
                font-size: 32px;
                margin-bottom: 20px;
                color: white;
            }
            .about-content p {
                font-size: 16px;
                line-height: 1.6;
                color: white;
                margin-bottom: 15px;
            }
            .about-image {
                flex: 1;
                min-width: 300px;
                max-width: 600px;
                text-align: center;
            }
            .about-image img {
                max-width: 100%;
                border-radius: 8px;
                box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            }
        @media (max-width: 768px) {
            .about-us {
                flex-direction: column;
            }
            .about-content, .about-image {
                margin: 0 0 20px 0;
                max-width: 100%;
            }  
        }
        /* Testimonial section styles */
        
