* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.main-dealer {
  font-family: Arial, sans-serif;
  /* background-color: #f9f9f9; */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}
.container-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1200px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  /* box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
}
.dealer-left-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  /* background: #d71920; */
}
.dealer-left-section img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.dealer-right-section {
  flex: 1;
  padding: 40px;
}
.dealer-right-section h1 {
  color: #d01016;
  font-size: 48px;
  margin: 0;
}
.dealer-right-section h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-top: 5px;
}
.dealer-description {
  margin: 20px 0;
  color: #333;
  font-size: 1.1rem;
}
.dealer-benefits-list {
  list-style-type: none;
  padding: 0;
}
.dealer-benefits-list li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.dealer-benefits-list li::before {
  content: "\2022";
  color: #d71920;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.highlight {
  font-weight: bold;
}

/* ✅ Responsive Design */
@media (max-width: 992px) {
  .container-wrapper {
      flex-direction: column;
      text-align: center;
  }
  .dealer-right-section {
      padding: 30px;
  }
  .dealer-left-section {
      padding: 20px;
  }
}

@media (max-width: 600px) {
  .dealer-right-section h1 {
      font-size: 36px;
  }
  .dealer-right-section h2 {
      font-size: 2rem;
  }
  .dealer-description, .dealer-benefits-list li {
      font-size: 1rem;
      width: 100%;
  }
}









.main-dealer-form {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  position: relative;
  padding: 20px;
  box-sizing: border-box;
}
.hand-image {
  position: absolute;
  width: 30vw;
  max-width: 450px;
  z-index: -1;
}
.hand-left {
  left: -8%;
  bottom: 10%;
}
.hand-right {
  left: 78%;
  bottom: 30%;
}
.dealear-contact-container {
  width: 100%;
  max-width: 700px;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-sizing: border-box;
  background: white;
  position: relative;
  z-index: 1;
}
.dealear-contact-container h2 {
  font-size: 4vw;
  font-weight: 700;
  color: red;
  line-height: 0.9;
  margin-bottom: 20px;
}
.dealear-contact-container h2 span{
  font-style: italic; 
  font-size: 35px;
   color: black;
}
.dealear-contact-container p {
  font-size: 1rem;
  color: black;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.form-group input, .dealear-contact-container textarea {
  flex: 1;
  padding: 12px;
  border: 3px solid red;
  border-radius: 20px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}
.dealear-contact-container textarea {
  width: 100%;
  resize: none;
}
.dealear-contact-container button {
  background: #df1e17;
  color: white;
  padding: 12px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  max-width: 250px;
  margin-top: 10px;
  transition: all ease 0.5s;
}
.dealear-contact-container button:hover {
  background: #671b18;
}

@media (max-width: 1120px) {
  .hand-image {
      /* z-index: -2; */
      width: 80%;
  }
}
@media (max-width: 950px) {
  .hand-image {
   display: none;
  }
}
@media (max-width: 1380px) {
  .hand-image {
      width: 25%;
  }
}
@media (max-width: 800px) {
  .hand-image {
      display: none;
  }
}
@media (max-width: 768px) {
  .form-group {
      flex-direction: column;
  }
  .dealear-contact-container h2 {
      font-size: 7vw;
  }
}
@media (max-width: 480px) {
  .dealear-contact-container {
      padding: 20px;
  }
  .dealear-contact-container h2 {
      font-size: 8vw;
  }
   .dealear-contact-container h2 span{
  font-style: italic; 
  font-size: 30px;
   color: black;
} 
.dealear-contact-container h2 {
  font-size: 11vw;
  font-weight: 700;
  color: red;
  line-height: 0.9;
  margin-bottom: 20px;
}
}
