.ingredients-section {
    background-color: #262626; /* Dark background like in the design */
    padding: 80px 0;
}

.ingrediants-block {gap: 50px;}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.ingredients-image img {
    width: 100%;
    border-radius: 0; /* Optional: Modify as per design */
}

.ingredients-content {
    color: white;
}

.ingredients-title {
    font-size: 40px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.ingredients-subtitle {
    font-size: 24px;
    color: #a269b6; /* Light purple color for the subtitle */
    margin-bottom: 20px;
}

.ingredients-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
}


.accordion-content {
    max-height: 220px; /* Approx 10 lines of text */
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.expanded {
    max-height: none; /* This will expand to show the full content */
}

.read-more-btn {
    display: block;
    margin-top: 10px;
    background-color: #0073e6;
    color: white;
    padding: 8px;
    border: none;
    cursor: pointer;
    text-align: center;
}

.read-more-btn:focus {
    outline: none;
}

