.academy-main-layout {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    align-items: flex-start;
    padding: 20px;
}

/* تنظیم بخش آوای ارغوان */
.arghavan-section { flex: 2; } /* دو برابر فرم فضا می‌گیرد */

/* تنظیم بخش فرم */
.thim-section { flex: 1; }

/* ریسپانسیو: در موبایل روی هم قرار می‌گیرند */
@media (max-width: 768px) {
    .academy-main-layout { flex-direction: column; }
}

/* کدهای اختصاصی آوای ارغوان (اصلاح شده برای چیدمان) */
:root {
    --brand-color: #e288b4;
    --bg-soft: #FDF6F8;
    --text-deep: #4A4A4A;
}
.arghavan-container {
    font-family: 'Vazirmatn', sans-serif;
    direction: rtl;
    padding: 1.5rem;
    background-color: var(--bg-soft);
    border-radius: 12px;
    height: 100%; /* برای هم‌تراز شدن با فرم */
}
.hero-title {
    color: var(--text-deep);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
}
.compact-grid {
    display: flex;
    flex-direction: column; /* تغییر به ستونی برای جمع‌وجور بودن در کنار فرم */
    gap: 1rem;
}
.compact-card {
    background: #fff;
    padding: 1rem;
    border-right: 4px solid var(--brand-color);
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}
.compact-card h4 { margin: 0 0 0.3rem 0; color: var(--brand-color); font-size: 0.9rem; }
.compact-card p { margin: 0; font-size: 0.8rem; color: var(--text-deep); line-height: 1.5; }