/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BODY ===== */
body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

/* ===== SECTIONS ===== */
section {
  max-width: 1000px;
  margin: auto;
  padding: 45px 20px;
}

/* ===== HERO TITLE ===== */
h1 {
  font-size: 38px;
  text-align: center;
  color: #111;
  margin-bottom: 10px;
}

section p:first-of-type {
  text-align: center;
  font-size: 17px;
  color: #555;
}

/* ===== HEADINGS ===== */
h2 {
  font-size: 26px;
  color: #e91e63;
  margin-bottom: 15px;
  border-left: 5px solid #e91e63;
  padding-left: 10px;
}

h3 {
  font-size: 18px;
  color: #222;
  margin-top: 15px;
}

/* ===== PARAGRAPHS ===== */
p {
  font-size: 16px;
  margin-bottom: 10px;
}

/* ===== LISTS ===== */
ul {
  padding-left: 20px;
  margin-top: 10px;
}

ul li {
  margin-bottom: 8px;
  font-size: 15px;
}

/* ===== GALLERY ===== */
img {
  width: 100%;
  max-width: 750px;
  display: block;
  margin: 15px auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.02);
}

/* ===== REVIEW BOX LOOK ===== */
section:nth-of-type(6) p {
  background: #fafafa;
  padding: 12px;
  border-left: 4px solid #e91e63;
  margin-bottom: 10px;
  border-radius: 5px;
}

/* ===== FAQ STYLE ===== */
section:nth-of-type(7) h3 {
  margin-top: 20px;
  color: #111;
}

section:nth-of-type(7) p {
  margin-bottom: 15px;
  color: #444;
}

/* ===== CONTACT SECTION (LAST SECTION) ===== */
section:last-of-type {
  background: #111;
  color: #fff;
  text-align: center;
  border-radius: 12px;
  padding: 50px 20px;
}

section:last-of-type h2 {
  color: #fff;
  border: none;
}

section:last-of-type p {
  color: #ddd;
  font-size: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  section {
    padding: 30px 15px;
  }
}