/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    flex-wrap: wrap;
    justify-content: center;
}

.lang-btn {
    padding: 10px 20px;
    border: 2px solid #007bff;
    background-color: white;
    color: #007bff;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 100px;
}

.lang-btn:hover {
    background-color: #007bff;
    color: white;
    transform: translateY(-2px);
}

.lang-btn.active {
    background-color: #007bff;
    color: white;
}

/* Content Area */
.content {
    position: relative;
}

/* Arabic RTL Support */
#content-ar {
    direction: rtl;
    text-align: right;
}

#content-ar .statement h2 {
    text-align: right;
}

#content-ar .statement ul {
    text-align: right;
}

#content-ar .statement .signature {
    text-align: center;
}

.language-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.language-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Statements */
.statement {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.statement h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.statement p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    text-align: justify;
    margin-bottom: 15px;
}

.statement p:last-child {
    margin-bottom: 0;
}

.statement ul {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin: 15px 0;
    padding-left: 20px;
}

.statement li {
    margin-bottom: 8px;
}

.statement strong {
    color: #007bff;
    font-weight: 600;
}

.statement .signature {
    text-align: center;
    font-style: italic;
    font-size: 16px;
    color: #666;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 15px;
        border-radius: 0;
    }
    
    .language-selector {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .lang-btn {
        width: 100%;
        max-width: 200px;
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .statement {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .statement h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .statement p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .statement ul {
        font-size: 16px;
        padding-left: 15px;
    }
    
    .statement .signature {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .statement {
        padding: 15px 10px;
    }
    
    .statement h2 {
        font-size: 18px;
    }
    
    .statement p {
        font-size: 15px;
    }
    
    .statement ul {
        font-size: 15px;
        padding-left: 12px;
    }
    
    .statement .signature {
        font-size: 13px;
    }
}

/* Accessibility */
.lang-btn:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .language-selector {
        display: none;
    }
    
    .container {
        box-shadow: none;
        margin: 0;
        padding: 0;
    }
    
    .statement {
        background-color: white;
        border: 1px solid #ccc;
    }
} 