/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background-color: #f8f9fb;
  color: #222;
  line-height: 1.7;
}

/* PAGE WRAPPER */
header,
section,
footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* HEADER */
header {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  color: #fff;
  text-align: center;
  padding: 3.5rem 1.5rem;
}

header h1 {
  font-size: 2.3rem;
  margin-bottom: 0.5rem;
}

header p {
  color: #d4af37; /* gold touch */
  font-size: 1.05rem;
}

/* SECTIONS */
section {
  background: #fff;
  margin-top: 1.8rem;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #111;
  border-left: 4px solid #d4af37;
  padding-left: 0.6rem;
}

section p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* LISTS */
ul,
ol {
  padding-left: 1.2rem;
  margin-top: 0.6rem;
}

ul li,
ol li {
  margin-bottom: 0.4rem;
}

/* LINKS */
a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}

/* DELIVERY HIGHLIGHT */
section:nth-of-type(2) ul li {
  list-style: "✔  ";
  margin-left: 0.5rem;
}

/* FOOTER */
footer {
  background: #111;
  color: #ccc;
  margin-top: 3rem;
  border-radius: 12px 12px 0 0;
}

footer h3 {
  color: #fff;
  margin-bottom: 0.8rem;
}

footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

footer li {
  list-style: none;
}

footer a {
  color: #d4af37;
  font-weight: 500;
}
.cta-btn {
  display: inline-block;
  background: #d4af37;
  color: #000;
  padding: 0.7rem 1.4rem;
  border-radius: 30px;
  margin-top: 1rem;
  font-weight: bold;
}

.cta-btn:hover {
  background: #b8962e;
}


/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.8rem;
  }

  section h2 {
    font-size: 1.3rem;
  }

  footer ul {
    flex-direction: column;
    gap: 0.4rem;
  }
}
