body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 0 0 16px 16px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-home {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.back-home svg {
    width: 28px;
    height: 28px;
    margin-right: 10px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.back-home:hover svg {
    transform: translateX(-4px) scale(1.1);
}

.language-dropdown {
    padding: 12px 40px 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 32px;
    background-color: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M7%2010l5%205%205-5z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    font-size: 1.05rem;
    color: #444;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


.language-dropdown:hover {
    border-color: #888;
}

.language-dropdown:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.policy-container {
    padding: 2rem 0;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.policy-container h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

footer {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem 0;
    margin-top: 3rem;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -8px 25px rgba(0,0,0,0.08);
    text-align: center;
    border: none;
    width: 100%;
}

footer .container {
    justify-content: center;
}

footer p {
    color: #6c757d;
    margin: 0; /* Remove default paragraph margin */
}

/* RTL support */
html[dir='rtl'] .back-home svg {
    margin-right: 0;
    margin-left: 10px;
}

html[dir='rtl'] .policy-container {
    text-align: right;
}