/* Base Component Styles */
.basic {
    font-size: 24px;
    line-height: 36px;
    font-family: Inter;
    color: #2a2e34;
    text-align: left;
}
.chng-ti-hiu, .thng, .tnh-nng {
    font-weight: normal;
    align-self: stretch;
    position: relative;
    font-size: 16px;
    line-height: 24px;
    color: #555;
}
.basic-parent, .frame-parent, .tnh-nng-parent {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}

.tnh-nng-parent {
    gap: 12px;
}

.frame-parent {
    gap: 16px;
}

.basic-parent {
    gap: 8px;
}
/* Container and Parent Layouts */
.parent, .group, .container {
    position: relative;
    height: 40px;
}
.parent, .group { width: 166px; }
.container { width: 190.3px; }

/* Flexbox Layouts for Various Components */
.gi, .icons-line-checktask-parent, .box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap; /* Ensure items wrap in the row */
}

/* Icons and Decorative Elements */
.icons-line-checktask-child {
    position: absolute;
    height: 83.33%;
    width: 83.33%;
    top: 8.33%;
    right: 8.33%;
    bottom: 8.33%;
    left: 8.33%;
    border-radius: 4px;
    border: 1.5px solid #1d43ff;
    box-sizing: border-box;
}
.icons-line-checktask {
    width: 24px;
    height: 24px;
    position: relative;
}
.price-product-home {
    width: auto;
    position: relative;
    font-size: 32px;
    line-height: 38px;
    font-weight: 800;
    font-family: Inter;
    color: #2a2e34;
    text-align: left;
    display: inline-block;
}
.tnh-nng1 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    font-family: Inter;
    color: #2a2e34;
}
.kim-sot-kho {
    font-size: 14px;
    line-height: 24px;
    color: #555;
    text-align: left;
}
/* Responsive Design Adjustments */
@media (max-width: 1024px) {
    .chng-ti-hiu, .thng, .tnh-nng {
        font-size: 14px;  /* Smaller font size for smaller devices */
        line-height: 22px;
    }
}

@media (max-width: 768px) {
    .box {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container, .group {
        width: 100%;
        padding: 0 10px;
    }
    .basic-parent, .frame-parent, .tnh-nng-parent {
        flex-direction: column; /* Change direction for smaller screens */
    }
}

/* Box and Advanced Styling */
.box {
    flex: 1;
    box-shadow: 0px 18px 50px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    background-color: #fff;
    border: 1px solid #e8ecff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px;
    gap: 40px;
}
.box-01 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
}
.border-product-home {
    display: flex;
    padding: 0 18px 19.6px !important;
}
.currency-product-home {
    width: auto;
    vertical-align: top;
    position: relative;
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
    font-family: Inter;
    color: #2a2e34;
    text-align: left;
    display: inline-block;
}
/* Responsive Columns */
.flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px; /* Adjust gap as needed */
}
.flex-container .column {
    flex: 1 1 calc(33.333% - 16px); /* Adjust for desired columns per row */
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .flex-container .column {
        flex: 1 1 calc(50% - 16px); /* 2 columns on smaller screens */
    }
}

@media (max-width: 480px) {
    .flex-container .column {
        flex: 1 1 100%; /* 1 column on very small screens */
    }
}