* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fffaf4;
  color: #111;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Align items to the top */
  padding: 30px 30px; /* Reduced vertical padding */
  background-color: #fffaf4;
}
.nav-logo img {
  height: 100px;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 60px;
}

nav a {
  text-decoration: none;
  color: #000;
  font-weight: normal;
  font-size: 20px; /* or 15px if you prefer slightly smaller */
}

nav ul li {
  font-weight: normal;
  font-size: 20px;
}
.shipping-content {
  max-width: 1400px;
  margin: 40px auto;
  padding: 0px;
}

.shipping-content h1 {
  font-size: 24px;
  margin-bottom: 25px;
}

.shipping-content ul {
  list-style-type: disc;
  padding-left: 10px;
  line-height: 1.8;
}

.shipping-content ul li {
  margin-bottom: 12px;
  color: #333;
}

