/* Dealer Page Specific Styles */

.dealer-benefits {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.benefit-item {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
}

.benefit-icon {
  background-color: #28a745;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.dealer-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('farm-equipment.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
  margin-bottom: 40px;
  text-align: center;
}

.dealer-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.dealer-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.dealer-section {
  margin-bottom: 50px;
}

.dealer-section h2 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.dealer-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background-color: #28a745;
}

.process-step {
  text-align: center;
  margin-bottom: 30px;
}

.step-number {
  background-color: #28a745;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Thank You Page Styles */
.thank-you-container {
  text-align: center;
  padding: 80px 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  margin: 50px auto;
  max-width: 800px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.thank-you-icon {
  font-size: 5rem;
  color: #28a745;
  margin-bottom: 20px;
}

.thank-you-container h2 {
  color: #333;
  margin-bottom: 20px;
}

.thank-you-container p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.return-btn {
  background-color: #28a745;
  color: white;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.return-btn:hover {
  background-color: #218838;
  color: white;
}
