    .ai-feature-wrapper {
        background: #ffffff; /* Clean white background for contrast */
        padding: 80px 0;
        position: relative;
    }

    .ai-text-content h2 {
        font-size: 2.8rem;
        letter-spacing: -1px;
        line-height: 1.2;
    }

    /* Professional Icon List */
    .feature-check-list {
        padding-left: 0;
        list-style: none;
    }

    .feature-check-list li {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        font-size: 16px;
        color: #4a5568;
    }

    .feature-check-list i {
        background: #ffe6ee;
        color: #E30052;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        margin-right: 12px;
        flex-shrink: 0;
    }

    /* Image Container with the "Peyari Line" Effect */
    .ai-visual-container {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        border: 1px solid #f0f0f0;
        transition: transform 0.4s ease;
    }

    .ai-visual-container::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #E30052, #ff4d8d);
        z-index: 2;
        transition: 0.6s ease;
    }

    .ai-visual-container:hover::before {
        left: 0;
    }

    .ai-visual-container:hover {
        transform: scale(1.02);
    }

    /* Professional Buttons */
    .btn-brand-primary {
        background: #E30052;
        color: #fff;
        border: none;
        padding: 14px 32px;
        font-weight: 600;
        transition: 0.3s;
    }

    .btn-brand-primary:hover {
        background: #c20046;
        color: #fff;
        box-shadow: 0 8px 20px rgba(227, 0, 82, 0.3);
    }

    .btn-brand-outline {
        border: 2px solid #E30052;
        color: #E30052;
        padding: 12px 32px;
        font-weight: 600;
        transition: 0.3s;
    }

    .btn-brand-outline:hover {
        background: #ffe6ee;
        color: #E30052;
    }