* {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
body {
  font-family: "Open Sans", sans-serif;
  background-color: #f7f3e9;
  color: #3f3d56;
}
.hero-section {
  background: linear-gradient(145deg, #3f3d56, #2c2a40);
  color: white;
  padding: 100px 0;
  text-align: center;
}
.hero-section h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.btn-gold {
  background-color: #e0c097;
  color: #3f3d56;
  border: none;
}
.btn-gold:hover {
  background-color: #d1b284;
}
.icon-box {
  text-align: center;
  padding: 30px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.icon-box:hover {
  transform: translateY(-5px);
}
.icon-box i {
  font-size: 2.5rem;
  color: #e0c097;
  margin-bottom: 15px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #e0c097;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.card-custom {
  background: white;
  border: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}
.btn-gold:hover {
  background-color: #d1b284;
}
.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(224, 192, 151, 0.4);
  border-color: #e0c097;
}
.privacy-section {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
}
.terms-section {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
}
.optout-section {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
}
.refund-section {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
}
