/* General Styles */
body {
    font-family: 'Raleway', sans-serif;
    background-color: #f9fafb;
    color: #374151;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: #ffffff;
    padding: 16px 0;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    gap: 8px;
}

/* Logo */
img {
    width: 120px;
}

/* Language Selector */
select {
    appearance: none;
    background-color: #ffffff;
    border: 2px solid rgb(74, 58, 255);
    border-radius: 6px;
    padding: 8px 12px;
    color: rgb(74, 58, 255);
    font-size: 16px;
    cursor: pointer;
}

select:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0px 0px 4px rgba(74, 58, 255, 0.5);
}

/* Main Content */
main {
    max-width: 1400px;
    margin: 20px auto;
    padding: 20px;
}

h1 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(74, 58, 255);
    margin-bottom: 16px;
}

h2 {
    font-size: 20px;
    font-weight: 600;
    color: rgb(74, 58, 255);
    margin-top: 24px;
    margin-bottom: 12px;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

hr {
    border: none;
    height: 2px;
    background: #ddd;
    margin: 16px 0;
}

/* Footer */
footer {
    background: rgb(74, 58, 255);
    color: white;
    text-align: center;
    padding: 16px 0;
    margin-top: 40px;
}


.pointer-events-none {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    color: rgb(74, 58, 255);
}

.icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.relative {
    position: relative;
}