
  /* Hero Section */
.einbl-hero {
  background-color: #f8fafc;
  padding: 40px 20px;
  text-align: center;
}

.einbl-hero-content h1 {
  font-size: 40px;
  color: #001938;
  margin-bottom: 20px;
}

.einbl-hero-subtitle {
  font-size: 18px;
  color: #475569;
  margin-bottom: 20px;
}

.einbl-hero-description {
  font-size: 16px;
  color: #334155;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Key Benefits Section */
.einbl-content-section {
  padding-top: 60px;
}

.einbl-section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.einbl-section-header p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.einbl-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.einbl-benefit-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.einbl-benefit-card:hover {
  transform: scale(1.05);
}

.einbl-benefit-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #001938;
  margin-bottom: 12px;
}

.einbl-benefit-card p {
  color: #334155;
  font-size: 14px;
  line-height: 1.6;
}

.einbl-benefit-icon {
  font-size: 36px;
  color: #ffd700;
  margin-bottom: 15px;
}

/* CTA Section */
.einbl-body-cta {
  background: #001938;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.einbl-body-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.einbl-body-cta h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

.einbl-body-cta-actions {
  margin-top: 30px;
}

.einbl-btn-primary {
  background-color: #ffd700;
  color: #001938;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  margin-right: 20px;
}

.einbl-btn-outline {
  background-color: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

/* Testimonials Section Background and Spacing */
.einbl-testimonial-section {
  background-color: #f4f7fa;
  padding: 60px 20px;
}

.einbl-testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.einbl-testimonial-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.einbl-testimonial-card:hover {
  transform: scale(1.05);
}

.einbl-testimonial-card blockquote {
  font-style: italic;
  color: #334155;
  font-size: 16px;
  margin-bottom: 20px;
  position: relative;
}

.einbl-testimonial-card blockquote::before {
  content: "“";
  font-size: 60px;
  color: #ffd700;
  position: absolute;
  top: -30px;
  left: -20px;
}

.einbl-testimonial-card blockquote::after {
  content: "”";
  font-size: 60px;
  color: #ffd700;
  position: absolute;
  bottom: -30px;
  right: -20px;
}

.einbl-testimonial-card p {
  font-weight: bold;
  color: #001938;
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.5;
  font-family: "Montserrat", sans-serif;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .einbl-testimonial-grid {
    grid-template-columns: 1fr;
  }
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .einbl-benefit-grid {
    grid-template-columns: 1fr;  /* Stack the cards on small screens */
  }

  .einbl-testimonial-grid {
    grid-template-columns: 1fr;  /* Stack testimonial cards */
  }
}
/* Responsive Adjustments for Hero Section */
@media (max-width: 768px) {
  .einbl-hero-content h1 {
    font-size: 28px;  /* Reduced font size for the hero title */
    margin-bottom: 15px;  /* Reduced margin to prevent excessive spacing */
  }

  .einbl-hero-subtitle {
    font-size: 16px;  /* Adjusted subtitle font size */
    margin-bottom: 15px;
  }

  .einbl-hero-description {
    font-size: 14px;  /* Adjusted description font size */
    max-width: 100%;  /* Ensure the description doesn't overflow */
    margin: 0 auto;  /* Center the description */
    line-height: 1.5;  /* Adjust line height for better readability */
    margin-bottom: 20px;  /* Added some bottom margin for spacing */
  }

  /* Adjust Benefit Section Text */
  .einbl-benefit-card h3 {
    font-size: 18px;  /* Adjusted heading size for better alignment */
  }

  .einbl-benefit-card p {
    font-size: 14px;  /* Adjusted paragraph size */
  }

  .einbl-body-cta h3 {
    font-size: 18px;  /* Reduced font size for CTA heading */
    margin-bottom: 15px;
  }

  .einbl-btn-primary,
  .einbl-btn-outline {
    padding: 10px 20px;  /* Reduced padding for buttons */
    font-size: 14px;  /* Adjusted font size */
  }
}
