
    .section-container-ai {
        background-color: #1a3e7a; /* Deep navy background from image */
        padding: 80px 0;
        font-family: 'Inter', sans-serif;
        color: white;
    }

    .header-title-ai {
        font-weight: 700;   
        font-size: 2.25rem;
        max-width: 700px;
        margin: 0 auto 60px auto;
        line-height: 1.2;
    }

    .feature-card-ai {
        background: white;
        border-radius: 15px;
        padding: 40px 25px 25px 25px;
        height: 100%;
        color: #334155;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: none;
    }

    .feature-card-ai:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }

    .card-title-ai {
        font-weight: 700;
        font-size: 1.25rem;
        margin-bottom: 15px;
        color: #1e293b;
    }

    .card-text-ai {
        font-size: 0.95rem;
        color: #64748b;
        margin-bottom: 30px;
        min-height: 50px;
    }

    .image-container-ai {
        width: 100%;
        margin-bottom: 30px;
        position: relative;
    }

    /* Circular cropping for the feature images */
    .img-circle-ai {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        object-fit: cover;
        background-color: #f1f5f9;
    }

    .card-footer-ai {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: auto;
        padding-top: 20px;
    }

    .expand-link-ai {
        color: #3b82f6;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .expand-link-ai:hover {
        text-decoration: underline;
    }

    .arrow-icon-ai {
        color: #3b82f6;
        font-size: 1rem;
    }
