/* ------------------------
   GLOBAL STYLES
------------------------- */
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

h1, h2 {
  margin: 0 0 20px 0;
}

p {
  margin: 0 0 15px 0;
}

/* ------------------------
   HERO SECTION
------------------------- */
.hero {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 100px 20px;
  background: url('hero-bg.jpg') no-repeat center center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark overlay for readability */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-weight: 800;               /* extra bold */
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero p {
  font-weight: 600;               /* semi-bold */
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

/* BUTTONS */
.btn {
  display: inline-block;
  background: #e63946;
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s, transform 0.3s;
}

.btn:hover {
  background: #d62828;
  transform: scale(1.05);
}

/* ------------------------
   TRUST SECTION
------------------------- */
.trust {
  display: flex;
  justify-content: space-around;
  gap: 16px;
  padding: 30px 20px;
  background: #f9fafb;
  text-align: center;
  flex-wrap: wrap;
}

.trust-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s;
}

.trust-item:hover {
  transform: translateY(-5px);
}

.icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  transition: transform 0.3s;
}

.trust-item:hover .icon {
  transform: scale(1.2);
}

/* ------------------------
   STEPS SECTION
------------------------- */
.steps {
  padding: 60px 20px;
  text-align: center;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 24px;
}

.step-item {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s;
}

.step-item:hover {
  transform: translateY(-5px);
}

.icon-step {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  transition: transform 0.3s;
}

.step-item:hover .icon-step {
  transform: scale(1.2) rotate(5deg);
}

/* ------------------------
   FORM SECTION
------------------------- */
.form-section {
  background: #fafafa;
  padding: 60px 20px;
}

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

fieldset {
  border: none;
  margin-bottom: 20px;
  padding: 0;
}

label {
  display: block;
  margin-bottom: 15px;
  font-weight: 600;
}

input, select {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.offer-form button {
  margin-top: 10px;
  cursor: pointer;
}

.disclaimer {
  font-size: 12px;
  margin-top: 10px;
  text-align: center;
  color: #666;
}

/* ------------------------
   FOOTER
------------------------- */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #fff;
}

/* ------------------------
   RESPONSIVE
------------------------- */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1.2rem;
  }
}
