body {
  background: linear-gradient(144deg, black, #c1121f 0%, #003049), #003049;
  min-height: 100vh;
  font-family: Roboto, sans-serif;
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-size: 27px;
}

@media (min-width: 576px) {
  .feature-title {
    font-size: 40px;
    min-height: 2.2em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.feature-desc {
  font-size: 17px;
}

@media (min-width: 750px) {
  .feature-desc {
    font-size: 22px;
  }
}

.img-fluid {
  max-height: 250px;
  object-fit: contain;
}

.mv-form-card {
  background: #fff;
  border-radius: 28px;
  padding: 56px 50px 46px;
  box-shadow: 0 18px 55px rgba(0,0,0,.14);
  border: 1px solid rgba(0,0,0,.06);
  width: min(1320px, 96vw);
  margin: auto;
  text-align: center;
}

.mv-form-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 850;
  line-height: 1.05;
  color: #111827;
  margin-bottom: 18px;
}

.mv-form-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  color: #4b5563;
  margin-bottom: 38px;
}

.mv-form .form-control, .mv-form .form-select {
  height: 66px;
  border-radius: 14px;
  border: 1px solid #cfd6df;
  font-size: 1.15rem;
  padding: 0 22px;
  color: #111827;
  background-color: #fff;
}

.mv-form .form-control::placeholder {
  color: #6b7280;
}

.mv-form .form-control:focus, .mv-form .form-select:focus {
  border-color: #315dff;
  box-shadow: 0 0 0 4px rgba(49, 93, 255, .18);
}

.mv-submit-btn {
  height: 74px;
  border-radius: 14px;
  background: #c91022;
  border: none;
  font-size: 1.35rem;
  font-weight: 850;
  margin-top: 6px;
}

.mv-submit-btn:hover {
  background: #a90d1c;
}

.mv-small-note {
  color: #667085;
  font-size: 1.05rem;
  margin-top: 18px;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.star-rating {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-section {
  background: #000;
  padding: 80px 0 30px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #c91022;
}

.footer-socials a {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.footer-socials a:hover {
  color: #c91022;
  transform: translateY(-3px);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 50px 0 30px;
}

.copyright-text {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .mv-form-card {
    padding: 32px 22px;
    border-radius: 22px;
  }
}

@media (max-width: 768px) {
  .mv-form-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .mv-form-subtitle {
    font-size: 1rem;
    margin-bottom: 26px;
  }
}

@media (max-width: 768px) {
  .mv-form .form-control, .mv-form .form-select {
    height: 58px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .mv-submit-btn {
    height: 64px;
    font-size: 1.1rem;
  }
}

