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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    direction: rtl;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.logo {
    text-align: center;
    color: white;
    margin-bottom: 40px;
    padding-top: 40px;
}

.logo-icon {
    font-size: 80px;
    margin-bottom: 10px;
}

.logo h1 {
    font-size: 36px;
    font-weight: 700;
}

.content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.content h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 30px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}

.card p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
}

footer {
    text-align: center;
    color: white;
    margin-top: 40px;
    padding: 20px;
    font-size: 14px;
    opacity: 0.8;
}

/* Legal pages specific styles */
.legal-page {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin: 20px 0;
}

.legal-page h1 {
    color: #333;
    font-size: 32px;
    margin-bottom: 10px;
}

.legal-page .date {
    color: #999;
    font-size: 14px;
    margin-bottom: 30px;
}

.legal-page h2 {
    color: #667eea;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page h3 {
    color: #333;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-page p, .legal-page li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.legal-page ul, .legal-page ol {
    margin-right: 30px;
    margin-bottom: 20px;
}

.legal-page ul li, .legal-page ol li {
    margin-bottom: 10px;
}

.back-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    font-weight: 600;
}

.back-button:hover {
    transform: scale(1.05);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .content {
        padding: 30px 20px;
    }

    .legal-page {
        padding: 30px 20px;
    }

    .logo h1 {
        font-size: 28px;
    }

    .content h2 {
        font-size: 24px;
    }

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