* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #f8f8f8;
  color: #222;
  line-height: 1.6;
  padding: 30px 15px;
}

.content-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.refund-section {
        margin-top: 50px;

}
.policy-section {
        margin-bottom: 50px;
}
.refund-section,
.policy-section {
  background-color: #fff;
  padding: 40px 60px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #222;
  font-weight: 700;
}

h1 span {
  color: #FDC805;
}

h2 {
  font-size: 24px;
  margin: 30px 0 15px;
  color: #222;
  font-weight: 600;
}

h3 {
  font-size: 20px;
  margin-top: 25px;
  color: #222;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  margin-top: 15px;
  color: #333;
  font-weight: 500;
}

p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
}

ul,
ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

strong {
  color: #111;
  font-weight: 600;
}

.policy-wrapper strong,
.refund-wrapper strong {
  color: #111;
  font-weight: 600;
}

.note {
  background-color: #fffbe6;
  padding: 10px 15px;
  border-left: 4px solid #FDC805;
  margin: 20px 0;
  font-size: 15px;
  color: #333;
}

a {
  color: #0077cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .refund-section,
  .policy-section {
    padding: 20px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 16px;
  }

  p,
  li,
  .note {
    font-size: 14px;
  }
}
