:root {
    --brand-orange: #ff5f00;
}

iframe#tidio-chat-code,
iframe#tidio-chat-iframe {
    display: none !important;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding-inline: 20px;
}

.landing-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 800px;
    text-align: center;
    line-height: 1.6;
    position: relative;
}

.sixt-orange {
    color: var(--brand-orange); 
    font-weight: bold;
}

.lang-switcher {
    position: absolute;
    top: 30px;
    right: 20px;
    background: #ffffff;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.lang-switcher a {
    text-decoration: none;
    font-weight: bold;
    color: #888;
    font-size: 14px;
    padding: 6px 6px;
    transition: color 0.3s;
}

.lang-switcher a:hover {
    color: #333;
}

.lang-switcher a.active {
    color: var(--brand-orange);
}

.logo-container {
    position: absolute;
    top: 20px;
    left: 20px;
}

.logo-container img {
    height: 55px; 
    width: auto;
}

.back-link {
    display: inline-block;
    margin-top: 35px;
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: text-decoration 0.3s;
}

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

.back-button {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 24px;
    background-color: var(--brand-orange);
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px; 
    transition: background-color 0.3s, transform 0.2s;
}

.back-button:hover {
    background-color: #e65500; /* Λίγο πιο σκούρο στο hover */
    transform: translateY(-2px); /* Μικρό εφεδάκι ανασήκωσης */
}