p.mb-5.tm-font-big {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
}

.tm-bg-transparent-black {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

img.contact_icon {
    width: 100px;
    margin-right: 20px;
}


body {
    margin: 0;
    padding: 0;
}


/* Floating Button Container */
.lang-switcher {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
}

/* Icon button */
.lang-icon {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

/* Language dropdown */
.lang-dropdown {
    position: absolute;
    bottom: 60px;
    right: 0;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: none;
    min-width: 120px;
}

.lang-dropdown.active {
    display: block;
}

.lang-dropdown a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
}

.lang-dropdown a:hover {
    background-color: #f0f0f0;
}