body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f0f2f5;
}

.btn {
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    color: white;
    background-color: #EE7203;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #bf5c02;
}

.lang-switch {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: none;
    border: 1px solid #EE7203;
    color: #EE7203;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
}

.lang-btn:hover {
    background-color: #EE7203;
    color: white;
}

.lang-btn.active {
    background-color: #EE7203;
    color: white;
    font-weight: bold;
}

.back-link {
    display: inline-block;
    margin-bottom: 1rem;
    text-decoration: none;
    color: #EE7203;
}

.container {
    padding: 2rem;
    max-width: 800px;
    margin: auto;
}

.centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

h1 {
    color: #1c1e21;
}

.button-container {
    display: flex;
    gap: 1rem;
}
