* {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #FFCF71;
    color: #333;
}

header {
    background-color: #fa9e25;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    margin-bottom: 0;
    color: #7B542F;
    font-style: italic;
    font-size: 24px; 
    font-weight: bold;
    text-decoration: none;
}

nav {
    display: flex;
}

nav a {
    color: #7B542F;
    text-decoration: none;
    margin-left: 20px;
    padding: 8px 15px;
    display: inline-block;
    box-shadow: 4px 4px 2px -1px rgba(0, 0, 0, 0.5);
}

nav a:hover {
    color: #7B542F;
    background-color: #FFC900;
}

.welcome-section {
    padding: 50px 20px;
    background-color: lightyellow;
}

.welcome-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.welcome-text {
    width: 48%;
    padding-right: 20px;
}

.welcome-text h1 {
    font-size: 42px;
    color: #8B4513;
    margin-bottom: 20px;
}

.welcome-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #7B542F;
}

.welcome-image {
    width: 45%;
}

.welcome-image img {
    width: 100%;
    height: auto;
    display: block;
}

.popular-products {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.popular-products h2 {
    text-align: center;
    font-size: 36px;
    color: #7B542F;
    margin-bottom: 40px;
}

.products-container {
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
}

.product-item {
    flex: 1;
    max-width: 300px;
    background-color: #FFF;
    padding: 15px;
    border: solid 2px #FF9D00;
    display: flex;
    flex-direction: column;
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover; 
    margin-bottom: 15px;
}

.product-item h3 {
    font-size: 24px;
    color: #8B4513;
    margin-bottom: 10px;
}

.product-item p {
    font-size: 16px;
    color: #666;
}

footer {
    background-color: #fa9e25;
    padding: 40px 20px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 30px auto;
}

.footer-section {
    width: 30%;
    display: inline-block;
    vertical-align: top;
    margin: 0 1.5%;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #7B542F;
}

.footer-section a {
    display: block;
    color: #7B542F;
    text-decoration: none;
    margin-bottom: 8px;
    padding: 5px 0;
}

.footer-section a:hover {
    color: #FFD700;
}

footer p {
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
    padding-top: 20px;
}

.about-section {
    padding: 50px 20px;
    background-color: lightyellow;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-container h1 {
    font-size: 42px;
    color: #8B4513;
    text-align: center;
    margin-bottom: 40px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

.team-image {
    margin: 40px 0;
    text-align: center;
}

.team-image img {
    width: 100%;
    height: auto;
}

.image-caption {
    font-size: 16px;
    color: #8B4513;
    margin-top: 10px;
    font-style: italic;
}

.mission-section {
    background-color: #FFCF71;
    padding: 30px;
    margin: 40px 0;
}

.mission-section h2 {
    font-size: 28px;
    color: #8B4513;
    margin-bottom: 15px;
}

.mission-section p {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
}

.achievements {
    margin-top: 40px;
}

.achievements h2 {
    font-size: 32px;
    color: #8B4513;
    margin-bottom: 20px;
}

.achievements ul {
    margin-left: 40px;
}

.achievements li {
    font-size: 18px;
    color: #555;
    line-height: 2;
    margin-bottom: 10px;
}

.products-page {
    padding: 50px;
    background-color: lightyellow;
}

.products-page-container {
    max-width: 1200px;
    margin: 0 auto;
}

.products-page-container h1 {
    font-size: 42px;
    color: #8B4513;
    text-align: center;
    margin-bottom: 50px;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;    
    justify-content: center; 
    gap: 20px;            
}

.product-box {
    flex: 0 1 25%;       
    width: 250px;
    background-color: #FFCF71;
    padding: 15px;
    border: solid 2px #7B542F;
    display: flex;
    flex-direction: column; 
    text-align: center;
}  

.product-box img {
    width: 100%;
    height: 200px;        
    object-fit: cover;     
    margin-bottom: 10px;
}

.product-box h3 {
    font-size: 22px;
    color: #8B4513;
    margin-top: 10px;
}

.news-section {
    padding: 50px 20px;
    background-color: lightyellow;
}

.news-container {
    max-width: 900px;
    margin: 0 auto;
}

.news-container h1 {
    font-size: 42px;
    color: #8B4513;
    text-align: center;
    margin-bottom: 40px;
}

.news-card {
    background-color: #FFF;
    border: 2px solid #8B4513;
    margin-bottom: 40px;
}

.news-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.news-content {
    padding: 30px;
}

.news-date {
    display: inline-block;
    background-color: #E2852E;
    color: #FFF;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 15px;
}

.news-content h2 {
    font-size: 28px;
    color: #8B4513;
    margin-bottom: 15px;
}

.news-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.news-details {
    background-color: #FFCF71;
    padding: 20px;
    margin-top: 20px;
}

.news-details h3 {
    color: #8B4513;
    margin-bottom: 10px;
}

.news-details ul {
    list-style-type: none;
    margin-left: 0;
}

.news-details li {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.contact-section {
    padding: 35px 20px;
    background-color: lightyellow;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container h1 {
    font-size: 42px;
    color: #8B4513;
    text-align: center;
    margin-bottom: 35px;
}

.contact-info-wrapper {
    width: 100%;
}

.contact-info-left {
    width: 48%;
    display: inline-block;
    vertical-align: top;
    padding-right: 20px;
}

.contact-form-right {
    width: 48%;
    display: inline-block;
    vertical-align: top;
    padding-left: 20px;
}

.contact-card {
    background-color: #FAF3E0;
    padding: 30px;
    border: solid 2px #D2691E;
    margin-bottom: 30px;
}

.contact-row {
    margin-bottom: 25px;
}

.contact-row h3 {
    font-size: 20px;
    color: #8B4513;
    margin-bottom: 8px;
}

.contact-row p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.phone-number {
    font-size: 22px;
    font-weight: bold;
    color: #8B4513;
}

.map-container {
    margin-top: 30px;
}

.map-container h3 {
    font-size: 24px;
    color: #8B4513;
    margin-bottom: 15px;
}

.contact-form-right h2 {
    font-size: 28px;
    color: #8B4513;
    margin-bottom: 15px;
}

.contact-form-right p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-form {
    background-color: #FAF3E0;
    padding: 0;
}

.contact-form fieldset {
    border: solid 2px #D2691E;
    padding: 30px;
}

.contact-form legend {
    font-size: 22px;
    color: #8B4513;
    font-weight: bold;
    padding: 0 10px;
}

.contact-form label {
    display: block;
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    margin-top: 15px;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: solid 1px #CCC;
    margin-bottom: 10px;
}

.contact-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: solid 1px #CCC;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

.contact-form input[type="submit"] {
    padding: 12px 30px;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
    background-color: #8B4513;
    color: #FFF;
    border: solid 2px #8B4513;
}

.contact-form input[type="submit"]:hover {
    background-color: #A0522D;
    border-color: #A0522D;
}