.bottom-bar {
    display: flex;
    flex-direction: column;
    background-color: #191B20;
    padding-top: 2rem;
}

.bottom-bar-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 1rem;
    padding: 1rem 6px;
}

.bottom-bar-content:first-child>* {
    flex: 1;
}

.legal-links {
    display: flex;
    flex-direction: column;
    margin: 0 1rem;
    flex: 1;
}

.legal-link {
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    margin: 6px 0;
}

.legal-link:hover {
    text-decoration: underline;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.bottom-bar p {
    color: #fff;
    margin: 6px 0;
    padding: 0;
    font-size: 0.9rem;
}

.bottom-bar h2 {
    color: #fff;
    margin: 6px 0;
    padding: 0;
    font-size: 1.1rem;
}

.contact-container p {
    font-size: 0.9rem;
}

.newsletter-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.newsletter {
    max-width: 50%;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center horizontally */
    text-align: center;
}

.newsletter p {
    font-size: 0.9rem;
    margin: 1rem 0;
}

.newsletter input {
    box-sizing: border-box;
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
}

.newsletter button {
    background-color: #ff9800;
    /* Orange */
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}

.newsletter button:hover {
    background-color: #e68a00;
}

/* Footer Section */
.bottom-bar-footer {
    border-top: 1px solid #333;
    padding: 1rem 6%;
    align-items: center;
    color: #fff;
    font-size: 0.9rem;
}

.footer-copy {
    flex: 1;
    text-align: left;
}

.footer-socials {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.2rem;
}

.footer-lang {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.lang-select {
    background-color: transparent;
    color: #fff;
    border: 1px solid #555;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    min-width: max-content;
}

.lang-select option {
    background-color: #191B20;
    color: #fff;
}

.bottom-bar a .bi {
    color: #fff;
    text-decoration: none;
}