/* ===================================================================
   BUSINESS LANDING PAGES - Fortune Academy
   Modern B2B landing pages for each industry vertical
   =================================================================== */

/* ===================================================================
   HERO SECTION
   =================================================================== */
.business-hero {
  position: relative;
  padding: 120px 0 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.business-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 1;
}

.business-hero .container {
  position: relative;
  z-index: 2;
}

.business-hero-content {
  max-width: 800px;
  color: #ffffff;
}

.business-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #ffffff;
}

.business-hero-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #f0f0f0;
}

.business-hero-benefits {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.business-hero-benefits li {
  font-size: 1.1rem;
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: #ffffff;
}

.business-hero-benefits li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #10b981;
  font-size: 1rem;
}

.business-hero .button-primary {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  margin-top: 1rem;
}

/* ===================================================================
   PARTNER LOGOS SECTION
   =================================================================== */
.business-partners {
  background: #f9fafb;
  padding: 60px 0;
  border-bottom: 1px solid #e5e7eb;
}

.business-partners h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.partner-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.partner-logo-item {
  transition: all 0.3s ease;
  max-width: 150px;
}

.partner-logo-item img {
  width: 100%;
  height: auto;
}

/* Placeholder logos - styled to look like actual logos */
.partner-logo-placeholder {
  width: 150px;
  height: 80px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #4b5563;
  text-align: center;
  padding: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.partner-logo-placeholder::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
  border-radius: 50%;
  opacity: 0.15;
}

/* Make partner logos visible on white background */
.business-partners .partner-logo-item img {
  /* Add a subtle filter to make white logos darker */
  filter: brightness(0) saturate(100%) invert(27%) sepia(8%) saturate(639%) hue-rotate(169deg) brightness(95%) contrast(87%);
  opacity: 0.7;
}

.business-partners .partner-logo-item:hover img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(8%) saturate(639%) hue-rotate(169deg) brightness(95%) contrast(87%);
  opacity: 1;
}

/* ===================================================================
   LEAD GENERATION FORM SECTION
   =================================================================== */
.lead-gen-section {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  padding: 80px 0;
  position: relative;
}

.lead-gen-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}

.lead-gen-content {
  position: relative;
  z-index: 2;
}

.lead-gen-header {
  text-align: center;
  margin-bottom: 3rem;
  color: #ffffff;
}

.lead-gen-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.lead-gen-header p {
  font-size: 1.25rem;
  color: #e0e7ff;
  max-width: 700px;
  margin: 0 auto;
}

.lead-gen-form-container {
  background: #ffffff;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  max-width: 800px;
  margin: 0 auto;
}

.lead-gen-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.lead-gen-form .form-group {
  margin-bottom: 1.5rem;
}

.lead-gen-form label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.lead-gen-form input[type="text"],
.lead-gen-form input[type="email"],
.lead-gen-form input[type="tel"],
.lead-gen-form select,
.lead-gen-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
  font-family: inherit;
}

.lead-gen-form input:focus,
.lead-gen-form select:focus,
.lead-gen-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.lead-gen-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-method-group {
  display: flex;
  gap: 2rem;
  margin-top: 0.5rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.radio-option label {
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 500;
}

.lead-gen-form .submit-btn {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.lead-gen-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.form-note {
  text-align: center;
  color: #6b7280;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ===================================================================
   LMS BENEFITS SECTION
   =================================================================== */
.lms-benefits-section {
  padding: 80px 0;
  background: #ffffff;
}

.lms-benefits-header {
  text-align: center;
  margin-bottom: 4rem;
}

.lms-benefits-header h5 {
  color: #3b82f6;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.lms-benefits-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.lms-benefits-header p {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

.lms-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.lms-benefit-card {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.lms-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
  background: #ffffff;
}

.lms-benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.lms-benefit-icon i {
  font-size: 1.75rem;
  color: #ffffff;
}

.lms-benefit-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.lms-benefit-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lms-benefit-card ul li {
  padding: 0.5rem 0;
  color: #4b5563;
  position: relative;
  padding-left: 1.75rem;
}

.lms-benefit-card ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #10b981;
  font-size: 0.875rem;
}

/* ===================================================================
   BULK SAVINGS CALCULATOR SECTION
   =================================================================== */
.bulk-calculator-section {
  padding: 80px 0;
  background: #f9fafb;
}

.bulk-calculator-header {
  text-align: center;
  margin-bottom: 3rem;
}

.bulk-calculator-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.bulk-calculator-header p {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto;
}

.calculator-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

/* Left Side - Course Catalog */
.course-catalog {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.catalog-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-group label {
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
}

.filter-group select {
  padding: 0.5rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
  background: #ffffff;
}

.filter-group select:focus {
  outline: none;
  border-color: #3b82f6;
}

.catalog-search {
  position: relative;
  flex: 1;
  min-width: 250px;
}

.catalog-search input {
  width: 100%;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  font-size: 0.95rem;
}

.catalog-search input:focus {
  outline: none;
  border-color: #3b82f6;
}

.catalog-search i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.apply-filters-btn {
  padding: 0.5rem 1.5rem;
  background: #3b82f6;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.apply-filters-btn:hover {
  background: #2563eb;
}

/* Course List */
.course-list {
  margin-bottom: 2rem;
}

.course-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.course-item:last-child {
  border-bottom: none;
}

.course-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.course-details {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.course-details-link {
  color: #3b82f6;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.course-details-link:hover {
  color: #2563eb;
  text-decoration: underline;
}

.course-pricing {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.price-display {
  text-align: right;
}

.original-price {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 0.95rem;
  display: block;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

/* Quantity Controls */
.qty-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #4b5563;
  white-space: nowrap;
}

.qty-input {
  width: 70px;
  padding: 0.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  font-size: 1rem;
  text-align: center;
  font-weight: 600;
  transition: all 0.2s ease;
}

.qty-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  opacity: 1;
}

.add-course-btn {
  padding: 0.75rem 1.5rem;
  background: #f97316;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  white-space: nowrap;
}

.add-course-btn:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(249, 115, 22, 0.3);
}

.add-course-btn.added {
  background: #10b981;
}

.add-course-btn.added:hover {
  background: #059669;
}

.load-more-container {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #e5e7eb;
}

.load-more-btn {
  padding: 0.875rem 2rem;
  background: #4b5563;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.load-more-btn:hover {
  background: #374151;
}

.course-count {
  margin-left: 1rem;
  color: #6b7280;
  font-size: 0.95rem;
}

/* Right Side - Bulk Summary */
.bulk-summary {
  background: #1f2937;
  border-radius: 12px;
  padding: 2rem;
  color: #ffffff;
  position: sticky;
  top: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bulk-summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #374151;
}

.bulk-summary-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.bulk-icon {
  font-size: 2rem;
  color: #3b82f6;
}

.summary-stats {
  margin-bottom: 2rem;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem 0;
}

.stat-label {
  font-size: 1rem;
  color: #d1d5db;
  font-weight: 500;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #10b981;
}

.stat-value.subtotal {
  color: #ffffff;
}

.summary-divider {
  height: 2px;
  background: #374151;
  margin: 1.5rem 0;
}

.add-all-btn {
  width: 100%;
  padding: 1.25rem;
  background: #3b82f6;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.add-all-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(59, 130, 246, 0.4);
}

.summary-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: #9ca3af;
}

.summary-empty i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.summary-empty p {
  margin: 0.5rem 0;
  line-height: 1.6;
}

.cart-link {
  color: #3b82f6;
  text-decoration: underline;
  cursor: pointer;
}

.cart-link:hover {
  color: #60a5fa;
}

/* ===================================================================
   INDUSTRY-SPECIFIC COLORS
   =================================================================== */

/* Real Estate - Blue */
.real-estate-business .lead-gen-section {
  background: linear-gradient(135deg, #2c75ba 0%, #4c8ed0 100%);
}

.real-estate-business .lms-benefit-icon {
  background: linear-gradient(135deg, #2c75ba 0%, #4c8ed0 100%);
}

.real-estate-business .business-hero .button-primary {
  background: #2c75ba;
}

.real-estate-business .business-hero .button-primary:hover {
  background: #4c8ed0;
}

.real-estate-business .lead-gen-form .submit-btn {
  background: linear-gradient(135deg, #2c75ba 0%, #4c8ed0 100%);
}

.real-estate-business .header-btn .button-primary {
  background: #2c75ba;
  border-color: #2c75ba;
}

.real-estate-business .header-btn .button-primary:hover {
  background: #4c8ed0;
  border-color: #4c8ed0;
}

/* Mortgage - Purple */
.mortgage-business .lead-gen-section {
  background: linear-gradient(135deg, #7b1fa2 0%, #9c27b0 100%);
}

.mortgage-business .lms-benefit-icon {
  background: linear-gradient(135deg, #7b1fa2 0%, #9c27b0 100%);
}

.mortgage-business .business-hero .button-primary {
  background: #7b1fa2;
}

.mortgage-business .business-hero .button-primary:hover {
  background: #9c27b0;
}

.mortgage-business .lead-gen-form .submit-btn {
  background: linear-gradient(135deg, #7b1fa2 0%, #9c27b0 100%);
}

.mortgage-business .header-btn .button-primary {
  background: #7b1fa2;
  border-color: #7b1fa2;
}

.mortgage-business .header-btn .button-primary:hover {
  background: #9c27b0;
  border-color: #9c27b0;
}

/* Appraisal - Blue */
.appraisal-business .lead-gen-section {
  background: linear-gradient(135deg, #2c75ba 0%, #4c8ed0 100%);
}

.appraisal-business .lms-benefit-icon {
  background: linear-gradient(135deg, #2c75ba 0%, #4c8ed0 100%);
}

.appraisal-business .business-hero .button-primary {
  background: #2c75ba;
}

.appraisal-business .business-hero .button-primary:hover {
  background: #4c8ed0;
}

.appraisal-business .lead-gen-form .submit-btn {
  background: linear-gradient(135deg, #2c75ba 0%, #4c8ed0 100%);
}

.appraisal-business .header-btn .button-primary {
  background: #2c75ba;
  border-color: #2c75ba;
}

.appraisal-business .header-btn .button-primary:hover {
  background: #4c8ed0;
  border-color: #4c8ed0;
}

/* OSHA - Orange */
.osha-business .lead-gen-section {
  background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 100%);
}

.osha-business .lms-benefit-icon {
  background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 100%);
}

.osha-business .business-hero .button-primary {
  background: #ff6f00;
}

.osha-business .business-hero .button-primary:hover {
  background: #ff8f33;
}

.osha-business .lead-gen-form .submit-btn {
  background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 100%);
}

.osha-business .header-btn .button-primary {
  background: #ff6f00;
  border-color: #ff6f00;
}

.osha-business .header-btn .button-primary:hover {
  background: #ff8f33;
  border-color: #ff8f33;
}

/* Healthcare - Red */
.healthcare-business .lead-gen-section {
  background: linear-gradient(135deg, #c1241a 0%, #d9534f 100%);
}

.healthcare-business .lms-benefit-icon {
  background: linear-gradient(135deg, #c1241a 0%, #d9534f 100%);
}

.healthcare-business .business-hero .button-primary {
  background: #c1241a;
}

.healthcare-business .business-hero .button-primary:hover {
  background: #ff857d;
}

.healthcare-business .lead-gen-form .submit-btn {
  background: linear-gradient(135deg, #c1241a 0%, #d9534f 100%);
}

.healthcare-business .header-btn .button-primary {
  background: #c1241a;
  border-color: #c1241a;
}

.healthcare-business .header-btn .button-primary:hover {
  background: #ff857d;
  border-color: #ff857d;
}

/* Compliance - Green */
.compliance-business .lead-gen-section {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
}

.compliance-business .lms-benefit-icon {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
}

.compliance-business .business-hero .button-primary {
  background: #4caf50;
}

.compliance-business .business-hero .button-primary:hover {
  background: #6ccf71;
}

.compliance-business .lead-gen-form .submit-btn {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
}

.compliance-business .header-btn .button-primary {
  background: #4caf50;
  border-color: #4caf50;
}

.compliance-business .header-btn .button-primary:hover {
  background: #6ccf71;
  border-color: #6ccf71;
}

/* ===================================================================
   RESPONSIVE DESIGN
   =================================================================== */
@media (max-width: 1200px) {
  .calculator-container {
    grid-template-columns: 1fr 340px;
  }
}

@media (max-width: 991px) {
  .business-hero h1 {
    font-size: 2.5rem;
  }

  .calculator-container {
    grid-template-columns: 1fr;
  }

  .bulk-summary {
    position: relative;
    top: 0;
  }

  .lms-benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .business-hero {
    padding: 80px 0 60px;
    min-height: 400px;
  }

  .business-hero h1 {
    font-size: 2rem;
  }

  .business-hero-description {
    font-size: 1.1rem;
  }

  .lead-gen-form-container {
    padding: 2rem;
  }

  .lead-gen-form .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-method-group {
    flex-direction: column;
    gap: 1rem;
  }

  .catalog-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group select {
    width: 100%;
  }

  .course-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .course-pricing {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .qty-controls {
    order: 1;
  }

  .price-display {
    order: 2;
  }

  .add-course-btn {
    order: 3;
    width: 100%;
  }

  .lms-benefits-header h2,
  .bulk-calculator-header h2 {
    font-size: 2rem;
  }

  .partner-logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .business-hero h1 {
    font-size: 1.75rem;
  }

  .lead-gen-header h2 {
    font-size: 2rem;
  }

  .lead-gen-form-container {
    padding: 1.5rem;
  }

  .course-catalog {
    padding: 1.5rem;
  }

  .bulk-summary {
    padding: 1.5rem;
  }

  .current-price {
    font-size: 1.25rem;
  }
}

