* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    transition: direction 0.3s ease;
}

body[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

body[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

body[dir="rtl"] .nav-actions {
    flex-direction: row-reverse;
}

body[dir="rtl"] .footer-links {
    flex-direction: row-reverse;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ff6b35;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-toggle {
    padding: 8px 20px;
    border: 2px solid #ff6b35;
    border-radius: 25px;
    background: #fff;
    color: #ff6b35;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-toggle:hover {
    background: #ff6b35;
    color: #fff;
}

.language-toggle.mobile {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}

.btn-host {
    background: #ff6b35;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-host:hover {
    background: #e55a28;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: right 0.3s;
    padding: 20px;
}

body[dir="rtl"] .mobile-menu {
    right: auto;
    left: -100%;
    transition: left 0.3s;
}

.mobile-menu.active {
    right: 0;
}

body[dir="rtl"] .mobile-menu.active {
    right: auto;
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mobile-menu-header img {
    height: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* Privacy Policy Content */
.privacy-policy {
    padding: 60px 0;
    min-height: 60vh;
}

.privacy-policy h1 {
    color: #ff6b35;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
}

.privacy-policy h2 {
    color: #333;
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 15px;
}

.privacy-policy p {
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.8;
}

.privacy-policy a {
    color: #ff6b35;
    text-decoration: none;
}

.privacy-policy a:hover {
    text-decoration: underline;
}

.privacy-policy strong {
    font-weight: 600;
    color: #333;
}

/* Footer Styles */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-col p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-section {
    margin-bottom: 30px;
}

.country-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.country-flag {
    height: 20px;
    width: auto;
    object-fit: contain;
}

.company-name {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.contact-section a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.contact-section a:hover {
    color: #ff6b35;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #34495e;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    list-style: none;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .privacy-policy h1 {
        font-size: 2em;
    }

    .privacy-policy h2 {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .privacy-policy {
        padding: 40px 0;
    }

    .privacy-policy h1 {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .privacy-policy h1 {
        font-size: 1.5em;
    }

    .privacy-policy h2 {
        font-size: 1.3em;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}