/* Container to keep everything centered and readable */
.special-request-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: inherit; /* Inherits your theme's font */
}

/* Intro Section Styling */
.intro-section {
  text-align: center;
  margin-bottom: 40px;
}

.intro-section h2 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 24px;
}

/* Styled List for Custom Requirements */
.custom-features-list {
  text-align: start;
  background-color: #f9f9f9; /* Soft background color */
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 24px 24px 24px 48px;
  margin: 0 auto;
  max-width: 500px;
  list-style-type: disc !important; /* You can change to checkmarks if preferred */
}

.custom-features-list li {
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 12px;
  line-height: 1.5;
}

.custom-features-list li:last-child {
  margin-bottom: 0; /* Removes extra space at the bottom */
}

/* Form Wrapper to make the Google Form look integrated */
.form-wrapper {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* Soft drop shadow */
  overflow: hidden; /* Keeps the rounded corners neat */
  border: 1px solid #f0f0f0;
}

/* Make iframe responsive on mobile */
.form-wrapper iframe {
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .special-request-container {
    margin: 20px auto;
  }
  .intro-section h2 {
    font-size: 1.25rem;
  }
}