

        /* 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 */
         
        .investment-section {
            padding: 40px 20px;
            text-align: center;
            border: solid rgba(255, 255, 255, 0.55);
            border-radius: 20px;
        }
        .investment-section h1 {
            font-size: 32px;
            margin-bottom: 20px;
            color: white;
        }
        .investment-section p {
            font-size: 18px;
            color: white;
            max-width: 800px;
            margin: 0 auto 20px auto;
        }
        .investment-section ul {
            list-style-type: none;
            padding: 0;
            margin: 0 auto 20px auto;
            max-width: 400px;
            text-align: left;
        }
        .investment-section ul li {
            font-size: 16px;
            color: white;
            margin: 10px 0;
        }
        .investment-section ul li a {
            color: #007bff;
            text-decoration: none;
        }
        .investment-section ul li a:hover {
            text-decoration: underline;
        }
        .contact-form {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            max-width: 600px;
            margin: 20px auto;
        }
        .contact-form h2 {
            margin-top: 0;
            color: #333;
            text-align: center;
        }
        .contact-form label {
            display: block;
            margin: 10px 0 5px 0;
            color: #555;
        }
        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
        }
        .contact-form button {
            width: 100%;
            padding: 10px;
            margin-top: 15px;
            background: #007bff;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        .contact-form button:hover {
            background: #0056b3;
        }

        /* Chart styles */
