
        
        
        /* Define a flex container with wrap enabled */
.domain-sales-steps .flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: #f9f9f9; /* Change to your desired color */
}

/* Define the section title */
.domain-sales-steps .section-title {
    width: 100%;
    text-align: center;
    font-size: 24px; /* Change to your desired size */
    color: #333; /* Change to your desired color */
    margin-bottom: 20px; /* Add some space below the title */
}

/* Define the flex items (boxes) */
.domain-sales-steps .flex-item {
    flex: 1 1 200px; 
    margin: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid #000; /* 1 pixel black border */
    border-radius: 10px; /* 10 pixel border radius */
    background-color: #fff; /* Change to your desired color */
}

/* Define the box icon */
.domain-sales-steps .box-icon {
    width: 50px;
    height: 45px;
}

/* Define the box title */
.domain-sales-steps .box-title {
    font-size: 20px; /* Change to your desired size */
    color: #333; /* Change to your desired color */
}

/* Define the box text */
.domain-sales-steps .box-text {
    font-size: 16px; /* Change to your desired size */
    color: #666; /* Change to your desired color */
}




/* Responsive design for screens smaller than 600px */
@media (max-width: 600px) {
    /* Add some space around the entire domain sales steps component */
    .domain-sales-steps {
        margin-left: 20px;
        margin-right: 20px;
    }

    /* Change the flex direction to column for the boxes */
    .domain-sales-steps .flex-container {
        flex-direction: column;
    }

    /* Add some space around the flex items (boxes) */
    .domain-sales-steps .flex-item {
        margin: 20px auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* Align the box icon and title side by side */
    .domain-sales-steps .title-icon-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    /* Alternate the alignment of the box icon */
    .domain-sales-steps .flex-item:nth-child(even) .box-icon {
        margin-right: auto;
        margin-left: 0;
    }

    .domain-sales-steps .flex-item:nth-child(odd) .box-icon {
        margin-left: auto;
        margin-right: 0;
    }

    /* Center the box title */
    .domain-sales-steps .box-title {
        text-align: center;
        width: 100%;
    }
}
