
    
    .installation-section .feature-list li {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .installation-section .feature-list .text-secondary {
        color: #666666 !important; /* Slightly darker gray for better readability */
    }

    .installation-section .feature-icon {
        margin-top: 1px; /* Optically aligns the circle icon with the middle of the first line of text */
        flex-shrink: 0;  /* Prevents the icon from squishing if the text wraps to a second line on mobile */
    }

    /* --- Minimalist Process Section --- */
    
    /* Force the background to be solid white, overriding the previous background image */
    .process-section {
        background-color: #ffffff !important;
        background-image: none !important;
    }

    /* The Main Light-Gray Card */
    .process-card {
        background-color: #f9f9f9; 
        padding: 45px 35px;
        position: relative;
        border-radius: 0; /* Sharp corners like the design */
        box-shadow: none;
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

    /* The subtle top-right square */
    .process-card::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 45px;
        height: 45px;
        background-color: #f0f0f0; /* Slightly darker gray than the card */
        z-index: 1;
        transition: background-color 0.3s ease;
    }

    /* The Large Background Number */
    .step-number {
        font-size: 3.5rem;
        font-weight: 600;
        color: #e5e5e5; /* Very light, subtle gray */
        margin-bottom: 25px;
        line-height: 1;
        position: relative;
        z-index: 2;
    }

    /* Card Title */
    .step-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 25px;
        position: relative;
        z-index: 2;
    }

    /* Custom Bullet List */
    .step-list {
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
        position: relative;
        z-index: 2;
    }

    .step-list li {
        color: #7a7a7a;
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 15px;
        position: relative;
        padding-left: 15px; /* Room for the custom dot */
    }

    .step-list li:last-child {
        margin-bottom: 0;
    }

    /* Tiny gray dot for the list items */
    .step-list li::before {
        content: "•";
        position: absolute;
        left: 0;
        top: 0;
        color: #888888;
        font-size: 1.2rem;
        line-height: 1.5;
    }

    /* Subtle Hover Interaction */
    .process-card:hover {
        transform: translateY(-5px);
        background-color: #f4f4f4;
    }
    
    .process-card:hover::before {
        background-color: #ebebeb;
    }