        body {
            margin: 0;
            font-family: Arial, sans-serif;
            line-height: 1.6;
        }

       .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #6B4226;
    padding: 15px 20px;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.navbar ul li {
    margin: 0 10px;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    position: relative;
}

.navbar ul li a::after {
    content: "";
    display: block;
    height: 2px;
    background: #FFD700;
    width: 0%;
    transition: width 0.3s;
    position: absolute;
    bottom: -4px;
    left: 0;
}

.navbar ul li a:hover::after {
    width: 100%;
}

.search-cart {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.search-cart input {
    padding: 5px;
    border: none;
    border-radius: 4px;
    margin: 5px 0;
}

.search-cart button {
    background-color: #FFD700;
    color: #6B4226;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
}

        /* Header Section */
        header {
            background: url('./img/bg\ img\ 1') no-repeat center center/cover;
            text-align: center;
            color: white;
            padding: 100px 20px;
            margin-top: 70px; /* Adjust for navbar height */
        }

        header h1 {
            margin: 0;
            font-size: 48px;
        }

        header p {
            font-size: 20px;
            margin-top: 10px;
        }

        section {
            padding: 50px 20px;
            max-width: 1000px;
            margin: auto;
            text-align: center;
        }

        section h2 {
            margin-bottom: 20px;
            color: #6B4226;
        }

        section p {
            max-width: 800px;
            margin: 0 auto;
        }

        .content img {
            width: 100%;
            max-width: 500px;
            margin: 20px auto;
            display: block;
            border-radius: 10px;
        }

        /* Values Section */
        ul {
            list-style: none;
            padding: 0;
        }

        ul li {
            font-size: 18px;
            margin: 10px 0;
        }

        .call-to-action a {
            background-color: #FFD700;
            color: #6B4226;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 18px;
            display: inline-block;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .call-to-action a:hover {
            background-color: #6B4226;
            color: white;
        }

       .site-footer {
  background: #4b2c20; /* rich brown */
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.site-footer a {
  color: #ffd27f;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-section {
  flex: 1 1 220px;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffd27f;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section form {
  display: flex;
  gap: 5px;
}

.footer-section input[type="email"] {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 4px;
}

.footer-section button {
  background: #ffd27f;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.footer-section button:hover {
  background: #ffbf40;
}

.social-links li {
  display: inline-block;
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

