.meat-contact {
    /* padding: 3rem 2rem; */
    background-color: #f8f8f8;
    padding-bottom: 2rem;

}

.meat-contact .content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.meat-contact .content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #000000;
}

.meat-contact .redirect-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
}

.meat-contact .redirect-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #000000;
    font-family: 'Arial', sans-serif;
}

.meat-contact .redirect-item p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.meat-contact .redirect-item a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .meat-contact .redirect-item {
        height: auto;
        margin-bottom: 15px;
    }
}

@media (min-width: 992px) {
    body .header .nav {
        gap: 1.5rem;
    }

    body .header .nav li.active a {
        background: transparent;
        color: #fff;
    }

    body .header .nav li a:hover {
        background-color: transparent;
        border-radius: 0px;
        color: #fff;
    }
}

body .header .nav li {
    position: relative;
    margin: 0px;
}

body .header .nav li a {
    font-size: 1rem;
    padding: 0.5rem;
}



.header .nav li .sub-nav {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
    top: calc(100% + 2px);
    left: 0;
}



.header .nav li .sub-nav li {
    margin: 0px;
}

.header .nav li .sub-nav li a {
    color: #000000;
    display: block;
    font-size: 1rem;
    padding: 0.5rem;
    white-space: nowrap;
}

.header .nav li:hover .sub-nav {
    display: block;
}


@media (max-width:992px) {
    .header .nav li .sub-nav {
        display: block;
        position: initial;
        background: #000000;
        box-shadow: none;
    }

    .header .nav li .sub-nav li:last-child {
        border-bottom: 0px;
    }

    .header .nav li .sub-nav li a {
        color: #fff;
    }
}


/* Contact (Contact Us) */
.contact {
    padding: 3rem 2rem;
    background-color: #f8f8f8;
    text-align: center;
}

.contact .content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000000;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    font-family: 'Arial', sans-serif;
}

/* .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
} */

.contact-form h3,
.contact-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000000;
    font-family: 'Arial', sans-serif;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.contact-form label {
    font-size: 1rem;
    color: #333;
    font-family: 'Arial', sans-serif;
}

.contact-form input,
.contact-form textarea {
    padding: .375rem .75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
    font-family: 'Arial', sans-serif;
}

.contact-form button {
    width: auto;
    align-self: center;
    background-color: #000000;
    color: #fff;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    line-height: 1.6;
    font-size: 13.3333px;
}

.contact-details p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.contact-details .cta-button {
    margin-top: 1rem;
    display: inline-block;
}