.plans {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    gap: 24px;
}

.plan-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    min-height: 500px;
}

.plan h4 {
    margin-bottom: 15px;
    color: #1AAFC6;
}

.plan ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.plan ul li {
    margin-bottom: 10px;
    text-align: justify;
}
.square-item {
    box-shadow: 0px -1px 8px 0px rgba(0, 0, 0, 0.25);
    padding: 24px;
    margin-top: 32px;
}

.plan-selection {
    text-align: center;
}
.h2-title-plans {
    color: #1AAFC6;
}
.plan button {
    background-color: #1AAFC6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.plan button:hover {
    background-color: #138091;
}

.w80 {
    width: 80%;
}

.justify-content-md-center {
    display: flex;
    justify-content: center;
}
.plan-card-img {
   max-width: 60px;
}
.plan-text-title {
    text-align: center;
    font-size: 1.3rem;
}
.btn-plan {
    font-weight: bold;
    width: 80%;
    padding: 16px !important;
}
.col-md-4-small-input > label {
    margin-bottom: 12px;
}
.show-2, .show-3 {
    padding-top: 24px;
    padding-bottom: 24px;
    padding: 24px;
}
.form-group>input {
    margin-top: 12px;
}
.mb-4 {
    margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
    .plans {
        flex-direction: column;
        gap: 20px;
        flex-wrap: wrap;
    }

    .plan {
        width: 100%;
    }

}