.text-justify {
    text-align: justify;
}

.key-about {
    background-color: #721700;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    max-width: 300px;
    transition: transform 0.3s;
    /* border: 1px solid #188d40; */
}

.key-about:hover {
    transform: translateY(-5px);
}

.key-about h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 2px solid #d78220;
    padding-bottom: 5px;
}

.key-about p {
    color: #ffffff;
}

.key-links {
    background-color: #721700;
    /* soft background */
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    max-width: 300px;
    transition: transform 0.3s;
    /* border: 1px solid #188d40; */
}

.key-links:hover {
    transform: translateY(-5px);
}

.key-links h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 2px solid #d78220;
    padding-bottom: 5px;
}

.key-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.key-links ul li {
    margin: 0px 0;
}

.key-links ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    padding: 8px 12px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.key-links ul li a:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateX(5px);
    border-left: 5px solid #d78220;
}

.key-contact {
    background-color: #721700;
    /* soft background */
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    max-width: 300px;
    transition: transform 0.3s;
    /* border: 1px solid #188d40; */
}

.key-contact:hover {
    transform: translateY(-5px);
}

.key-contact h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 2px solid #d78220;
    padding-bottom: 5px;
}

.key-contact p a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.key-baner-div {
    width: 100%;
    height: 340px;
    margin-bottom: 30px;
}

.key-baner-div img {
    width: 100%;
    height: 340px;
    /* margin-bottom: 30px; */
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.key-main h1 {
    color: #d78220;
    font-size: 38px;
}




/* FAQ Section */
.faq-section {
    background: #FDF5EB;
    padding: 30px;
}

/* FAQ Item */
.faq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* Question */
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px 26px;
    /* Reduced height */
    font-size: 1rem;
    /* Slightly smaller font */
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #222;
}

/* Icon */
.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 26px;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    padding-bottom: 16px;
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    /* arrow points up when open */
}




.table-container {
    max-width: 900px;
    margin: auto;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

th,
td {
    padding: 15px;
    text-align: center;
}

th {
    background-color: #aa804f;
    color: #fff;
    font-size: 18px;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:hover {
    background-color: #f1f1f1;
    transition: 0.3s;
}

td:first-child {
    font-weight: bold;
    background-color: #fafafa;
}

.highlight {
    color: #721700;
    font-weight: bold;
}

@media (max-width: 600px) {

    th,
    td {
        padding: 10px;
        font-size: 14px;
    }
}


.menu-our {
    background: #fffaf3;
}

.food-list {
    list-style: none;
    padding-left: 0rem !important;
}

.food-list li i {
    color: #721700;
    padding-right: 20px;
}




.about-cont {
    flex: 1;
}

.about-cont h2 {
    font-size: 32px;
    color: #222;
    margin-bottom: 15px;
}

.about-cont h2 span {
    color: #721700;
}

.about-cont p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.highlight-para {
    background: #f1f1f1;
    padding: 15px;
    border-left: 4px solid #721700;
    border-radius: 8px;
    font-weight: 500;
}

.icon-why {
    font-size: 44px;
    color: white;
}

/* Mobile responsive css  */

@media (max-width: 768px) {
    .key-baner-div img {
        width: 100%;
        height: auto;
    }

    .key-baner-div {
        width: 100%;
        height: auto;
    }

    .key-about {
        max-width: 100%;
    }

    .key-links {
        max-width: 100%;
    }

    .key-contact {
        max-width: 100%;
    }

}