/* Shipping and Delivery Page Styling */

/* Inherit from the main stylesheet */
@import url(../style.css);

.container {
  padding: 120px 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 20px;
  text-align: center;
}

h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

p, li {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  /* margin-bottom: 1rem; */
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}

a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}
