/* Reseller Content Section */
.reseller-content {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
  color: #333;
}

.reseller-content .section-header {
  font-size: 2.4em;
  margin-bottom: 20px;
  color: #212121;
  font-weight: bold;
}

.reseller-content .section-header i {
  font-size: 2.8em;
  margin-bottom: 10px;
  color: #4ca1af;
  display: block;
}

.info-text {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.2em;
  line-height: 1.8;
  color: #555;
}

/* Alternating Sections */
.reseller-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
}

.reseller-box {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  text-align: center;
  background: #ff5722;
  padding: 50px 40px;
  border-radius: 15px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reseller-box:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.reseller-price {
  font-size: 3.5em;
  font-weight: bold;
  display: inline-block;
}

.reseller-box p {
  font-size: 1.1em;
  margin-top: 10px;
  opacity: 0.9;
}

/* Right Side Content */
.reseller-text {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.reseller-text h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #2c3e50;
}

.reseller-text p {
  font-size: 1.2em;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #555;
}

/* Feature List Section */
.features-section {
  background: #fafafa;
  padding: 60px 20px;
  text-align: center;
}

.features-section .section-header {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #212121;
  font-weight: bold;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto;
}

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.feature-card i {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #4ca1af;
}

.feature-card h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #2c3e50;
}

.feature-card p {
  font-size: 1em;
  color: #555;
  line-height: 1.6;
}

/* CTA Section */
.reseller-cta {
  background: linear-gradient(135deg, #4ca1af, #2c3e50);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.reseller-cta h2 {
  font-size: 2.6em;
  margin-bottom: 15px;
  font-weight: bold;
}

.reseller-cta p {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-cta {
  display: inline-block;
  padding: 14px 35px;
  background: #ff9800;
  color: #fff;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
