.welcome-section {
    padding: 60px 0;
}
.welcome-section  .container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin: 0 auto;
}
.welcome-section .left-content,
.welcome-section  .right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.welcome-section  .left-content {
    max-width: 40%;
}
.welcome-section .card {
    background-color: #F4F4F4;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border:none;
    border-radius: 20px;
}
.welcome-section  .card img {
    width: 100%;
    height: auto;
    max-width: 453px;;
}
.welcome-section .card-body {
    padding: 20px;
}
.welcome-section  .card-title {
    font-size: 20px;
    margin-bottom: 10px;
}
.welcome-section  .card-text {
    font-size: 16px;
    margin-bottom: 20px;
}
.welcome-section  a.btn.link {
    color: #37393F;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    padding:0;
    text-decoration: underline;
}
.welcome-section  a.btn.link:hover {
    text-decoration: unset;
    color: var(--purple-color);
}
.welcome-section .right-content {
    max-width: 55%;
}
.welcome-section  .intro {
    font-size: 14px;
    color: #6c757d;
    margin-left:15px;
}
.welcome-section  .title {
    font-size: 32px;
    font-weight: bold;
    margin: 10px 0 20px;
    max-width: 400px;
    color:#8331A7;
}
.welcome-section  .description p {
    font-size: 16px;
    margin-bottom: 10px;
}
.welcome-section  .description ul {
    list-style: none;
    padding: 0;
    margin:20px 0;

}
.welcome-section  .description ul li {
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 35px;
    padding-bottom: 10px;
}
.welcome-section  .description ul li::before {
    content: '.';
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='27' height='27' viewBox='0 0 27 27' fill='none'%3E%3Cpath d='M13.5 0C6.05618 0 0 6.05618 0 13.5C0 20.9438 6.05618 27 13.5 27C20.9438 27 27 20.9438 27 13.5C27 6.05618 20.9438 0 13.5 0ZM11.0337 20.2747L5.8024 14.4612L7.34647 13.0716L10.9811 17.11L19.601 6.84476L21.1937 8.17789L11.0337 20.2747Z' fill='%23803D97'/%3E%3C/svg%3E");   
    position: absolute;
    left: 0;
    top: 0;
    color: var(--purple-color);
    width:27px;
    height: 27px;;
}

.welcome-section  .info-boxes {
    display: flex;
    gap: 20px;
}
.welcome-section  .info-box {
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border:1px solid #ccc;
}
.welcome-section  .info-box .icon {
    margin-right: 15px;
}

.bi-check-circle-fill::before {
    content: "\f26a";
    color: #8331A7;
    padding-right: 10px;
}
.welcome-section  .info-box h5 {
    font-size: 18px;
    margin: 0 0 5px;
}
.welcome-section  .info-box p {
    font-size: 14px;
    margin: 0;
    color: #6c757d;
}
.welcome-section  .btn-primary {
    border-radius: 0px;
    max-width: 200px;
}

@media (max-width: 1000px) {
    .welcome-section .left-content, .welcome-section .right-content {
        max-width: 85%!important;
        display: block;
        flex:none;
        margin:0 auto;
    }

    .welcome-section  .description p {
        font-size: 16px;
        margin-bottom: 10px;
        color:#000;
        font-weight: bold;
    }
    .welcome-section  .description ul {
        list-style: none;
        padding: 0;
        margin:20px 0;
    
    }
    .welcome-section  .description ul li {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 0px;
        position: relative;
        padding-left: 0px;
        padding-bottom: 0px;
        color:#8331A7;
    }

    .welcome-section  .description ul li::before {
        content: '';
        background-image: none;
        position: absolute;
        left: 0;
        top: 0;
        color: var(--purple-color);
        width:0px;
        height:0px;
    }

    .welcome-section .info-box {
        padding: 20px;
        border-radius: 20px;
        margin-bottom: 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        border: 1px solid #8331A7;
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .welcome-section  .info-box h5 i {
        display: none;
    }

    .welcome-section  .info-box h5 {
        font-size: 1.5rem;
        margin: 0 0 5px;
        color: #8331A7;
    }
    .welcome-section  .info-box p {
        font-size: 1rem;
        margin: 0;
        color: #8331A7;
        text-align: center;
    }
    
}

@media (max-width: 574px) {
    .welcome-section .card img {
        max-width: auto;
    }
}