
        /* رنگ‌های سفارشی برند */
        .bg-primary-custom { background-color: #0a1428 !important; }
        .text-primary-custom { color: #0a1428 !important; }
        .bg-secondary-custom { background-color: #f1c40f !important; }
        .text-secondary-custom { color: #f1c40f !important; }


        /* هیرو */
        .hero-section {
            background: linear-gradient(135deg, #0a1428 60%, #1a2a4a 100%);
            padding: 80px 0 100px;
            position: relative;
            overflow: hidden;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(241, 196, 15, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        /* بخش‌بندی صفحات */
        .section-padding {
            padding: 80px 0;
        }
        .divider-line {
            width: 60px;
            height: 4px;
            background: #f1c40f;
            border-radius: 5px;
            margin-bottom: 1.5rem;
        }

        /* کارت‌های ویژگی */
        .feature-card {
            background: #fff;
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
            height: 100%;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(10, 20, 40, 0.1);
            border-color: #f1c40f;
        }
        .feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(241, 196, 15, 0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f1c40f;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
