/* ==================================================
   CSS برای صفحه درباره ما - هاله رویش
   بر اساس پالت و متغیرهای مدرن
   ================================================== */

/* ساختار اصلی محتوا */
.about-us-container {
    max-width: 1050px;
    margin: 40px auto;
    padding: 40px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* تایپوگرافی سرصفحه‌ها */
.about-us-title {
    font-size: 2.8em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 4px solid var(--primary-light);
}

h2 {
    font-size: 1.8em;
    color: var(--primary-dark);
    margin-top: 45px;
    margin-bottom: 15px;
    border-bottom: 2px dashed var(--text-light);
    padding-bottom: 8px;
}

p {
    margin-bottom: 1.2em;
    text-align: justify;
}

.about-us-list-ul {
    padding-right: 20px;
    list-style-type: none;
}

.about-us-list-ul li {
    position: relative;
    padding-right: 25px;
    margin-bottom: 10px;
}

.about-us-list-ul li::before {
    content: '✔'; /* استفاده از علامت چک سبز */
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    right: 0;
    top: 0;
}

/* جعبه مأموریت (Mission Box) */
.mission-box {
    background-color: #e8f5e9; /* سبز خیلی روشن */
    border: 1px solid var(--primary-light);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin: 30px 0;
    box-shadow: var(--shadow-sm);
}

.mission-box strong {
    font-size: 1.4em;
    display: block;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

/* دکمه‌های دعوت به اقدام (CTA) */
.cta-button {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--white);
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 50px; /* دکمه گردتر */
    font-weight: 600;
    margin-top: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: none;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* استایل جدول تماس */
.contact-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    text-align: right;
    font-size: 1.05em;
}

.contact-table td:first-child {
    width: 60px;
    text-align: center;
    font-size: 1.8em;
    color: var(--primary-color);
}

.contact-table tr:last-child td {
    border-bottom: none;
}

/* ریسپانسیو بودن اولیه */
@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 20px 15px;
    }
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.5em;
    }
}
