    /* تنظیمات کلی و رنگ‌بندی */
    .hc-auth-wrapper {
        font-family: inherit; /* از فونت قالب اصلی سایت ارث‌بری می‌کند */
        background-color: #ffffff; /* تم سفید خالص */
        color: #333333;
        line-height: 1.6;
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* انیمیشن اسکرول */
    .reveal-fade {
        opacity: 1 !important; /* محتوا را مرئی کنید */
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    .reveal-fade.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* بخش هدر صفحه (Hero) */
    .hc-auth-hero {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 40px;
        margin-bottom: 60px;
    }
    .hc-auth-hero-content {
        flex: 1;
        min-width: 300px;
    }
    .hc-auth-title {
        font-size: 28px;
        font-weight: bold;
        color: #222;
        margin-bottom: 15px;
    }
    .hc-auth-desc {
        font-size: 16px;
        color: #555;
        text-align: justify;
    }
    .hc-auth-hero-image {
        flex: 1;
        min-width: 300px;
    }
    .hc-auth-hero-image img {
        width: 100%;
        height: auto;
        border-radius: 24px; /* استاندارد برند */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        object-fit: cover;
    }

    /* نقل قول */
    .hc-auth-quote {
        text-align: center;
        font-size: 18px;
        font-weight: 500;
        color: #666;
        background-color: #fcfcfc;
        padding: 30px;
        border-radius: 24px;
        margin-bottom: 60px;
        border: 1px dashed #e0e0e0;
    }

    /* بخش‌ها و گرید راه‌های ارتباطی */
    .hc-auth-section {
        margin-bottom: 60px;
    }
    .hc-auth-section-title {
        font-size: 22px;
        font-weight: bold;
        text-align: center;
        margin-bottom: 30px;
        color: #222;
    }
    .hc-auth-features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    .hc-auth-feature-card {
        background-color: #f9f9f9;
        border-radius: 24px; /* استاندارد برند */
        padding: 30px 20px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .hc-auth-feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    }
    .hc-auth-icon {
        font-size: 32px;
        display: block;
        margin-bottom: 15px;
    }
    .hc-auth-feature-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #333;
    }
    .hc-auth-feature-card p {
        font-size: 15px;
        color: #666;
        margin: 0;
    }

    /* استایل آکاردئون سوالات متداول */
    .hc-auth-accordion {
        max-width: 800px;
        margin: 0 auto;
    }
    .hc-auth-acc-item {
        background-color: #fff;
        border: 1px solid #eee;
        border-radius: 24px; /* استاندارد برند */
        margin-bottom: 15px;
        overflow: hidden;
    }
    .hc-auth-acc-header {
        width: 100%;
        background: none;
        border: none;
        padding: 20px 25px;
        font-size: 16px;
        font-weight: bold;
        color: #333;
        text-align: right;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color 0.3s ease;
        font-family: inherit;
    }
    .hc-auth-acc-header:hover {
        background-color: #fafafa;
    }
    .hc-auth-acc-icon {
        font-size: 20px;
        font-weight: normal;
        transition: transform 0.3s ease;
    }
    .hc-auth-acc-header.active .hc-auth-acc-icon {
        transform: rotate(45deg); /* تبدیل + به x در حالت باز */
    }
    .hc-auth-acc-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
        background-color: #fafafa;
    }
    .hc-auth-acc-body p {
        padding: 0 25px 20px 25px;
        margin: 0;
        font-size: 15px;
        color: #555;
    }

    /* ریسپانسیو موبایل */
    @media (max-width: 768px) {
        .hc-auth-hero {
            flex-direction: column-reverse;
        }
    }