/* CSS لصفحة حساب المواطن */

/* قسم العنوان الرئيسي */
.page-hero {
    background-color: #0b579e;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* قسم المحتوى الرئيسي */
.main-content {
    padding: 60px 0;
}

/* بطاقات المعلومات */
.info-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 30px;
}

.info-card h2 {
    color: #0b579e;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e1e1e1;
}

.info-card p {
    line-height: 1.7;
    margin-bottom: 15px;
}

/* جدول مواعيد الإيداع */
.deposit-schedule {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.deposit-schedule th, 
.deposit-schedule td {
    padding: 12px 15px;
    text-align: right;
    border-bottom: 1px solid #e1e1e1;
}

.deposit-schedule th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #333;
}

.deposit-schedule tr:last-child td {
    border-bottom: none;
}

.deposit-schedule tr:hover {
    background-color: #f9f9f9;
}

/* شريط الأخبار والتحديثات */
.news-updates {
    background-color: #f5f7fa;
    padding: 40px 0;
    margin-top: 40px;
}

.news-updates h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #0b579e;
}

.news-list {
    list-style-type: none;
    padding: 0;
}

.news-list li {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.news-date {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.news-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #0b579e;
}

/* الأسئلة الشائعة */
.faq-section {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    font-weight: 600;
    cursor: pointer;
    padding: 15px;
    background-color: #f5f7fa;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
}

.faq-question.active:after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 15px;
    display: none;
    line-height: 1.7;
    background-color: #fff;
    border: 1px solid #e1e1e1;
    border-top: none;
    border-radius: 0 0 5px 5px;
}

/* تخطيط الشاشات المختلفة */
@media screen and (max-width: 768px) {
    .page-hero {
        padding: 40px 0;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .main-content {
        padding: 40px 0;
    }
    
    .deposit-schedule th, 
    .deposit-schedule td {
        padding: 10px;
    }
}

@media screen and (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .deposit-schedule {
        font-size: 0.9rem;
    }
    
    .deposit-schedule th, 
    .deposit-schedule td {
        padding: 8px;
    }
}
