/* ==================================== */
/* content-pages.css: Styles for Static Content Pages (About, Privacy, Terms) */
/* ==================================== */

.content-container {
    max-width: 1100px;
    margin: 30px auto 50px auto; /* مسافة قبل الـ Footer */
    padding: 30px;
    background-color: #222222; /* لون أغمق قليلاً من الخلفية للكونتينر */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-height: 70vh; 
    line-height: 1.8;
}

/* Typography & Structure */
body {
    font-family: 'Arial', sans-serif;
}
h1 { 
    color: #FFF; 
    font-size: 2.2rem; 
    text-align: center; 
    margin-bottom: 30px; 
    border-bottom: 2px solid #FFF; /* تنسيق موحد للعنوان الرئيسي */
    padding-bottom: 10px;
}
h2 { 
    color: #FFF; 
    font-size: 1.6rem; 
    margin-top: 30px; 
    margin-bottom: 15px; 
    border-bottom: 2px solid #555; /* تنسيق موحد للعنوان الثانوي */
    padding-bottom: 5px; 
}
p { 
    margin-bottom: 15px; 
    font-size: 0.95rem;
    color: #E0E0E0;
}
ul { 
    list-style: disc; 
    margin: 15px 0 15px 20px; 
    padding-right: 0; 
    color: #E0E0E0;
}

/* Specific Styles for About Page Content (Grid) */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
    text-align: center;
}
.benefit-card {
    background-color: #333333;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.benefit-card i {
    font-size: 2rem;
    color: #FFF;
    margin-bottom: 10px;
}
