 
        /* General Styles */
        
        h1 {
            font-size: 28px;
            margin-bottom: 10px;
        }
        p {
            font-size: 18px;
            margin-bottom: 20px;
        }

        /* Custom Dropdown Button */
        .dropdown {
            position: relative;
            display: inline-block;
        }
        .dropdown-btn {
            background: #b86e76;
            color: white;
            font-size: 18px;
            padding: 12px 20px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.3s ease-in-out;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .dropdown-btn:hover {
            background: #b86e76;
        }
        .dropdown-content {
            display: none;
            position: absolute;
            background: white;
            min-width: 180px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            overflow: hidden;
            z-index: 1000;
            transition: all 0.3s ease-in-out;
        }
        .dropdown-content a {
            color: black;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            text-decoration: none;
            transition: 0.3s ease-in-out;
        }
        .dropdown-content a:hover {
            background: #f1f1f1;
        }
        .dropdown:hover .dropdown-content {
            display: block;
        }
        .icon {
            width: 20px;
            height: 20px;
        }

        /* Hidden Google Translate Default */
        #google_translate_element {
            display: none;
        }
    