body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f3f3f3;
    color: #333;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #4a3c2f, #6b5844);
    color: #fff;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 28px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.image-section {
    display: flex;
    justify-content: center;
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text-section {
    padding: 5px; /* Reduced padding */
    font-size: 18px;
    line-height: 1.5; /* Reduced line-height */
    text-align: left;
    white-space: pre-line;
}

footer {
    position: relative;
    text-align: center;
    background: linear-gradient(135deg, #4a3c2f, #6b5844);
    color: #fff;
    padding: 10px;
    font-size: 12px;
}

footer .icon {
    position: absolute;
    bottom: 2px;
    right: 10px;
    cursor: pointer;
}

footer .icon img {
    width: 26px;
    height: 26px;
}

a {
    color: #fff;
    text-decoration: none;
}

.language-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 20px 0;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.slider-item {
    min-width: 100%;
    text-align: center;
    margin-bottom: 75px;
}

.slider-item img {
    width: 200px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s;
}

.slider-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.slider-buttons button {
    background-color: #534335b6;
    color: #fff;
    border: none;
    padding: 20px;
    cursor: pointer;
    font-size: 15px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.select-language {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.select-language button {
    background-color: #534335;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 15px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 22px;
    }

    .text-section {
        font-size: 16px;
    }
}