/* ===== Testimonials Section Styles ===== */
.testimonials-section {
    background-color: #ffffff;
    padding: 0;
    margin: 0;
    overflow: hidden;
    width: 100%;
}

.testimonials-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 0;
    gap: 0;
    min-width: 100%;
}

.testimonial-panel {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    border: none;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.testimonial-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(135deg, #c9cee3 0%, #a2d1c6 100%);
    color: rgb(93, 90, 90);
    text-align: center;
}

.testimonial-quote {
    margin: 0;
    padding: 0;
    border: none;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 400;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.testimonial-author cite {
    font-style: normal;
}

/* Responsive breakpoints for different screen sizes */
@media (min-width: 1920px) {
    .testimonial-panel {
        width: 380px;
        height: 357px;
    }
    .testimonial-text {
        font-size: 20px;
    }
}

@media (max-width: 1919px) and (min-width: 1600px) {
    .testimonial-panel {
        width: 360px;
        height: 340px;
    }
    .testimonial-text {
        font-size: 19px;
    }
}

@media (max-width: 1599px) and (min-width: 1366px) {
    .testimonial-panel {
        width: 340px;
        height: 320px;
    }
    .testimonial-text {
        font-size: 18px;
    }
}

@media (max-width: 1365px) and (min-width: 1024px) {
    .testimonial-panel {
        width: 320px;
        height: 300px;
    }
    .testimonial-text {
        font-size: 17px;
    }
}

@media (max-width: 1023px) and (min-width: 768px) {
    .testimonial-panel {
        width: 300px;
        height: 280px;
    }
    .testimonial-text {
        font-size: 16px;
    }
    .testimonial-content {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-panel {
        width: 100%;
        max-width: 400px;
        height: 300px;
        margin-bottom: 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .testimonial-content {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .testimonial-panel {
        height: 250px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .testimonial-content {
        padding: 20px;
    }
}
/* ===== End Testimonials Section Styles ===== */

/* ===== Awards Section Styles ===== */
.awards-section {
    background-color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.awards-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    gap: 30px;
}

.awards-image {
    width: 107px;
    height: 107px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.awards-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.awards-text {
    width: 398px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.award-title {
    font-size: 24px;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.2;
    font-family: 'Raleway', sans-serif;
    letter-spacing: -0.05em;
}

/* Responsive adjustments for awards section */
@media (max-width: 768px) {
    .awards-container {
        gap: 20px;
        padding: 0 20px;
    }
    
    .awards-text {
        width: 100%;
        max-width: 398px;
        height: auto;
        min-height: 45px;
    }
    
    .award-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .awards-section {
        padding: 40px 0;
    }
    
    .awards-image {
        width: 90px;
        height: 90px;
    }
    
    .award-title {
        font-size: 18px;
    }
}
/* ===== End Awards Section Styles ===== */

/* ===== Make Conscious Choices Section Styles ===== */
.offer_area .cta_app_wrap.ul_li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.offer_area .cta_app_wrap.ul_li li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.offer_area .cta_app_wrap.ul_li li a {
    display: block;
    transition: transform 0.3s ease;
}

.offer_area .cta_app_wrap.ul_li li a:hover {
    transform: translateY(-2px);
}

.offer_area .cta_app_wrap.ul_li li a img {
    max-width: 150px;
    height: auto;
    border-radius: 8px;
}
/* ===== End Make Conscious Choices Section Styles ===== */

/* ===== Recipe Menu Section Styles ===== */
.recipe_card {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: stretch;
    gap: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recipe_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.recipe_image {
    flex: 0 0 181px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recipe_image img {
    width: 181px;
    height: 181px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.recipe_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.recipe_header {
    margin-bottom: 20px;
}

.recipe_title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
}

.recipe_author {
    font-size: 12px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.recipe_description {
    margin-bottom: 25px;
}

.recipe_description p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.nutrition_table {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nutrition_table .table {
    margin: 0;
    border: none;
}

.nutrition_table .table thead th {
    background-color: #f8f9fa;
    border: none;
    padding: 12px 8px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: center;
    border-bottom: 2px solid #e9ecef;
}

.nutrition_table .table tbody td {
    border: none;
    padding: 12px 8px;
    font-size: 16px;
    color: #555;
    text-align: center;
    border-bottom: 1px solid #f1f3f4;
}

.nutrition_table .table tbody tr:last-child td {
    border-bottom: none;
}

/* Responsive adjustments for recipe cards */
@media (max-width: 992px) {
    .recipe_card {
        flex-direction: column;
        gap: 20px;
    }
    
    .recipe_image {
        flex: none;
        height: auto;
        display: flex;
        justify-content: center;
    }
    
    .recipe_image img {
        width: 181px;
        height: 181px;
    }
    
    .recipe_title {
        font-size: 18px;
    }
    
    .recipe_author {
        font-size: 11px;
    }
    
    .recipe_description p {
        font-size: 15px;
    }
    
    .nutrition_table .table thead th,
    .nutrition_table .table tbody td {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .recipe_card {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .recipe_image {
        height: auto;
        display: flex;
        justify-content: center;
    }
    
    .recipe_image img {
        width: 150px;
        height: 150px;
    }
    
    .recipe_title {
        font-size: 16px;
    }
    
    .recipe_author {
        font-size: 10px;
    }
    
    .recipe_description p {
        font-size: 14px;
    }
    
    .nutrition_table {
        padding: 15px;
    }
    
    .nutrition_table .table thead th,
    .nutrition_table .table tbody td {
        padding: 8px 4px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .recipe_card {
        padding: 15px;
        margin-bottom: 25px;
    }
    
    .recipe_image {
        height: auto;
        display: flex;
        justify-content: center;
    }
    
    .recipe_image img {
        width: 120px;
        height: 120px;
    }
    
    .recipe_title {
        font-size: 14px;
    }
    
    .recipe_author {
        font-size: 9px;
    }
    
    .recipe_description p {
        font-size: 12px;
    }
    
    .nutrition_table {
        padding: 10px;
    }
    
    .nutrition_table .table thead th,
    .nutrition_table .table tbody td {
        padding: 6px 2px;
        font-size: 12px;
    }
}
/* ===== End Recipe Menu Section Styles ===== */
