/* Main content */
.ingredients-section,
.how-to-use-section,
.about-section {
    padding: 80px 24px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 24px;
    color: var(--black1);
    transition: padding 0.4s ease, gap 0.4s ease;
}
.how-to-use-section::before{
    content: "";
    position: absolute;
    height: 100%;
    width: 100vw;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white1);
    z-index: -1;
}
.ingredients-section::before,
.about-section::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100vw;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand2);
    z-index: -1;
}
/* image */
.ingredients-section img,
.how-to-use-section img,
.about-section img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    transition: width 0.5s ease, height 0.5s ease;
}
/* Ingridients */
.ingredient-container .h1,
.how-to-use-section .h1,
.about-section .h1 {
    margin-bottom: 44px;
    transition: margin-bottom 0.4s ease;
}
.single-ingredient {
    border-bottom: 1px solid var(--brand1);
    transition: padding 0.4s ease;
}
.ingredient-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0;
    user-select: none;
    transition: padding 0.4s ease;
}
.ingredient-name:hover {
    cursor: pointer;
}
.ingredient-name svg {
    height: 26px;
    width: 26px;
    transform: rotate(0deg);
    transition: transform 0.4s ease;
}
.ingredient-desc {
    max-height: 0;
    visibility: hidden;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-bottom 0.4s ease, visibility 0.4s ease;
}
.how-to-use-desc > div {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.single-ingredient.active .ingredient-desc {
    margin-bottom: 32px;
    visibility: visible;
}
.single-ingredient.active .ingredient-name {
    padding: 32px 0 24px;
}
.single-ingredient.active .ingredient-name svg {
    transform: rotate(180deg);
}
/* Text content title */
.about-us-desc h1,
.about-us-desc h2,
.about-us-desc h3,
.about-us-desc h4,
.about-us-desc h5,
.about-us-desc h6 {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 24px;
}
.about-us-desc > p:not(:last-child),
.about-us-desc > div:not(:last-child),
.about-us-desc > div > div:not(:last-child) {
    margin-bottom: 32px;
}

/* Responsive */
@media (max-width: 768px) {
    /* Main content */
    .ingredients-section,
    .how-to-use-section,
    .about-section {
        padding: 50px 16px;
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .how-to-use-section img {
        order: 1;
    }
    .how-to-use-section .how-to-use-container {
        order: 2;
    }
    .ingredient-container .h1,
    .how-to-use-section .h1,
    .about-section .h1 {
        margin-bottom: 24px;
    }
    /* Ingridients */
    .ingredient-name {
        padding: 24px 0;
    }
    .single-ingredient.active .ingredient-name {
        padding: 24px 0;
    }
    /* Text content title */
    .about-us-desc h1,
    .about-us-desc h2,
    .about-us-desc h3,
    .about-us-desc h4,
    .about-us-desc h5,
    .about-us-desc h6 {
        font-size: 18px;
        line-height: 24px;
    }
}