.hero {
    background-size: cover;
    background-position: center;
    margin-top: 5px;
    height: 85vh;
    background-image: url('../Pictures/heroImage-About.webp');
}

.hero .hero_content {
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 80px;
    padding-top: 100px;
    padding-right: 0;
    width: 55em;
}

.hero .hero_content .datahead {
    text-align: center;
    font-size: 45px;
    color: #376079;
    text-shadow: 0 0 8px #fff;
}

.yummy {
    font-size: 85px;
    color: #ff4500;
    text-shadow: 0 0 8px #2f4858;
    padding-bottom: 15px;
}



.successheading {
    text-align: center;
    margin-top: 60px;
    font-size: 1.5em;
    margin-bottom: 90px;
    color: #ff4500;
}

.successheading h1 {
    font-family: cursive;
}

.success-stories {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    row-gap: 100px;
    margin-bottom: 50px;
}

.testimonial {
    background-color: #fff;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 19px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    align-self: normal;
    height: 300px;

}



.testimonial .successimage {
    width: 150px;
    height: 150px;
    margin-top: -80px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid orangered;
    box-shadow: 0 0 6px #ff4500;
}

.testimonial .successimage img {
    width: 100%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transition: transform 1s ease-in-out;
    scale: 1.05;
}


.testimonial img:hover {
    transform: scale(1.2);
}

blockquote {
    text-align: justify;
    font-size: 18px;
    line-height: 1.5em;
    padding-top: 0;
    padding-inline: 10px;
    padding-bottom: 25px;

}


cite {
    font-weight: bold;
    display: block;
    margin: auto;
    font-size: 20px;
    text-align: center;



}


.our-story {
    margin: 10px;
    /* margin-top: 10px; */
    padding: 50px 20px;
    box-shadow: 0 0 2px grey;
    background-color: #fafafa;
}

.story-heading h1 {

    color: #ff4500;
    text-align: center;
    font-size: 3em;
    margin-bottom: 40px;
    font-weight: 800;
    font-family: cursive;
}

.story-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.story-image {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 10px;

}

.story-text {
    max-width: 600px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}




.our-mission {
    padding: 50px 20px;
    background-color: #fff;
}

.mission-heading h1 {
    color: #ff4500;
    text-align: center;
    font-size: 3em;
    margin-bottom: 40px;
    font-weight: 800;
    font-family: cursive;
}

.mission-content {
    padding-inline: 60px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

.mission-content p {
    margin-bottom: 20px;
}

.mission-content ul {
    margin: 20px 0;
    padding-left: 40px;
}

.mission-content ul li {
    margin-bottom: 10px;
    list-style-type: disc;
    font-size: 1.15rem;
}

.mission-content ul li::marker {
    color: #ff4500;
}



.questions {
    margin: 10px;
}

.questions h2 {
    color: #ff4500;
    text-align: center;
    font-size: 3em;
    margin-bottom: 40px;
    font-weight: 800;
    font-family: cursive;
}


.questions div {
    box-shadow: 0 0 2px gray;
    margin: 15px;
    padding: 20px;
    padding-inline: 30px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.fa-solid {
    transition: transform 0.5s;
    color: #ff4500;
}

.fa-solid.active {
    transform: rotate(-180deg);
}

.questions .que {
    font-size: 18px;
    font-weight: bold;
    margin-inline: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: #2f4858;
}

.ans {
    font-size: 18px;
    margin-inline: 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s;
    color: #555;
    padding-top: 10px;
}

.ans.active {
    max-height: 100px;
}