
    /* Base styles */
    :root {
      --primary: #0072c6;
      --primary-light: #e3f2fd;
      --primary-dark: #004a8c;
      --secondary: #4caf50;
      --purple: #7b1fa2;
      --purple-light: #f3e5f5;
      --red: #e53935;
      --red-light: #ffebee;
      --gray-100: #f8f9fa;
      --gray-200: #e9ecef;
      --gray-300: #dee2e6;
      --gray-400: #ced4da;
      --gray-500: #adb5bd;
      --gray-600: #6c757d;
      --gray-700: #495057;
      --gray-800: #343a40;
      --border-radius: 8px;
      --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      --transition: all 0.3s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Segoe UI', Arial, sans-serif;
      line-height: 1.6;
      color: var(--gray-800);
      background-color: #f5f7fa;
      padding: 20px;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .page-header h1 {
      font-size: 32px;
      color: var(--gray-900);
      margin-bottom: 10px;
    }

    .page-header p {
      font-size: 16px;
      color: var(--gray-600);
    }

    /* Mail hosting tabs */
    .mail-hosting-tabs {
      width: 100%;
      margin: 0 auto;
    }

    /* Tab Navigation */
    .tab-navigation {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      margin-bottom: 40px;
    }

    .tab-button {
      flex: 1;
      min-width: 280px;
      max-width: 360px;
      background-color: white;
      border-radius: var(--border-radius);
      border: 1px solid var(--gray-300);
      padding: 20px;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
    }

    .tab-button:hover {
      transform: translateY(-5px);
      box-shadow: var(--box-shadow);
    }

    .tab-button.active {
      border-color: var(--primary);
      background-color: var(--primary-light);
    }

    .tab-button.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background-color: var(--primary);
    }

    .tab-icon {
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 15px;
    }

    .tab-icon img {
      max-height: 100%;
      max-width: 100%;
      object-fit: contain;
    }

    .dual-icon {
      display: flex;
      gap: 10px;
    }

    .dual-icon img {
      height: 60px;
      width: 60px;
      object-fit: contain;
    }

    .tab-label h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
      color: var(--gray-800);
    }

    .tab-label p {
      font-size: 14px;
      color: var(--gray-600);
      line-height: 1.4;
    }

    /* Tab Content */
    .tab-content-wrapper {
      position: relative;
      overflow: hidden;
      min-height: 400px; /* Set a minimum height to prevent layout shifts */
    }

    .tab-content {
      display: none;
      opacity: 0;
      transform: translateX(100%); /* Start position outside the right edge */
      transition: transform 0.5s ease, opacity 0.4s ease;
      position: absolute;
      width: 100%;
      left: 0;
      top: 0;
    }

    .tab-content.active {
      display: block;
      opacity: 1;
      transform: translateX(0); /* Slide to normal position */
      position: relative;
    }

    /* Plan card sample styling */
    .plans-grid-onemail {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 30px;
    }
    .plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    }

    .plan-card {
      background-color: white;
      border-radius: var(--border-radius);
      box-shadow: var(--box-shadow);
      overflow: hidden;
      transition: var(--transition);
    }

    .plan-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .plan-header {
      padding: 20px;
      background-color: var(--primary-light);
      border-bottom: 1px solid var(--gray-200);
    }

    .hybrid-plan .plan-header {
      background-color: var(--purple-light);
    }

    .ms365-plan .plan-header {
      background-color: var(--red-light);
    }

    .plan-header h3 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .plan-header p {
      font-size: 14px;
      color: var(--gray-600);
    }

    .plan-body {
      padding: 20px;
    }

    .plan-price {
      text-align: center;
      margin-bottom: 20px;
    }

    .plan-price-amount {
      font-size: 24px;
      font-weight: 700;
      color: var(--primary-dark);
    }

    .hybrid-plan .plan-price-amount {
      color: var(--purple);
    }

    .ms365-plan .plan-price-amount {
      color: var(--red);
    }

    .plan-price-period {
      font-size: 14px;
      color: var(--gray-600);
    }

    .feature-list {
      list-style-type: none;
      margin-bottom: 20px;
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 10px;
      font-size: 14px;
    }

    .feature-icon {
      color: var(--secondary);
      margin-right: 10px;
      flex-shrink: 0;
    }

    .plan-footer {
      padding: 20px;
      border-top: 1px solid var(--gray-200);
      text-align: center;
    }

    .btn {
      display: inline-block;
      background-color: var(--primary);
      color: white;
      padding: 10px 20px;
      border-radius: var(--border-radius);
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
    }

    .btn:hover {
      background-color: var(--primary-dark);
    }

    .hybrid-plan .btn {
      background-color: var(--purple);
    }

    .hybrid-plan .btn:hover {
      background-color: #5e1682;
    }

    .ms365-plan .btn {
      background-color: var(--red);
    }

    .ms365-plan .btn:hover {
      background-color: #c62828;
    }

    /* Debug tools */
    .debug-panel {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: white;
      padding: 10px;
      border-radius: var(--border-radius);
      box-shadow: var(--box-shadow);
      z-index: 1000;
    }

    .debug-panel p {
      margin-bottom: 10px;
      font-size: 14px;
    }
    .smartermail-features {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  margin-top: 40px;
}

.smartermail-features h2 {
  font-size: 24px;
  margin-bottom: 25px;
  color: var(--primary-dark);
  text-align: center;
  line-height: 1.4;
}

.feature-category {
  margin-bottom: 30px;
}

.feature-category h3 {
  font-size: 18px;
  color: var(--gray-800);
  margin-bottom: 10px;
  line-height: 1.4;
}

.feature-category ul {
  list-style: none;
  padding-left: 0;
}

.feature-category ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.6;
}

.feature-category ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  font-weight: bold;
}
/* Explanation Section */
.hybrid-explanation {
    background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  margin-top: 40px;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  color:#04346a
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--onemail-color), var(--ms365-color));
}

/* Cost Savings Example - Enhanced */
.cost-savings-card {
  background: linear-gradient(135deg, #ffffff, #f5f9ff);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 50px;
  border: 1px solid rgba(0, 114, 198, 0.2);
  position: relative;
  overflow: hidden;
}

.cost-savings-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--onemail-color), var(--ms365-color));
}

.cost-savings-card h3 {
  margin-top: 0;
  margin-bottom: 25px;
  text-align: center;
  font-size: 22px;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 15px;
}

.cost-savings-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--onemail-color), var(--ms365-color));
}

.cost-comparison {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
}

.cost-option {
  flex: 1;
  min-width: 250px;
  padding: 20px;
  border-radius: var(--radius-md);
  background-color: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.cost-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.cost-option.cost-hybrid {
  background: linear-gradient(145deg, #ffffff, var(--ms365-light));
  border: 2px solid var(--ms365-color);
}

.cost-option::before {
  content: "ทั่วไป";
  position: absolute;
  top: -10px;
  left: 20px;
  background-color: var(--onemail-color);
  color: white;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
}

.cost-option.cost-hybrid::before {
  content: "ประหยัด!";
  background-color: var(--ms365-color);
}

.cost-label {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  padding-top: 10px;
}

.cost-item {
  margin-bottom: 8px;
  padding: 8px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-sm);
}

.cost-total {
  margin-top: 20px;
  font-weight: 700;
  border-top: 2px dashed rgba(0, 0, 0, 0.1);
  padding-top: 15px;
  font-size: 18px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cost-saving {
  display: inline-block;
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 3px 6px rgba(76, 175, 80, 0.3);
  position: relative;
  margin-top: 5px;
  animation: pulse 2s infinite;
}



/* Additional mobile styles */
@media (max-width: 768px) {
  .cost-option {
    margin-top: 25px;  /* Make room for the label */
  }
  
  .cost-total {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cost-saving {
    margin-top: 10px;
    align-self: center;
  }
}

/* Benefits Section - More Lively */
.benefits-section {
  margin-bottom: 50px;
  position: relative;
  padding: 20px 0;
}

.benefits-section h3 {
  margin-bottom: 30px;
  text-align: center;
  font-size: 22px;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.benefits-section h3::after {
  content: "";
  display: block;
  width: 70%;
  height: 3px;
  background: linear-gradient(90deg, var(--onemail-color), var(--ms365-color));
  margin: 10px auto 0;
  border-radius: 3px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.benefit-card {
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid transparent;
  border-image: linear-gradient(to bottom, var(--onemail-color), var(--ms365-color)) 1;
}

.benefit-number {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--onemail-color), var(--ms365-color));
  color: #d8531a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 18px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.benefit-content {
  flex: 1;
}

.benefit-content h4 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--onemail-color);
  position: relative;
}

.benefit-content p {
  margin: 0;
  color: var(--text-medium);
  font-size: 15px;
  line-height: 1.5;
}

/* User Type Recommendations - More Lively */
.user-recommendation {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: var(--radius-md);
  position: relative;
}

.user-recommendation h3 {
  margin-bottom: 30px;
  text-align: center;
  font-size: 22px;
  color: var(--text-dark);
  position: relative;
}

.user-recommendation h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--onemail-color), var(--ms365-color));
  margin: 10px auto 0;
  border-radius: 3px;
}

.user-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.user-type-card {
  padding: 25px;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.user-type-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.user-type-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
  z-index: 1;
}

.user-type-card h4 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid;
  position: relative;
  display: inline-block;
}

.user-type-card h4::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  animation: borderPulse 2s infinite;
}

.onemail-users {
  background-color: var(--onemail-light);
  border-top: 3px solid var(--onemail-color);
}

.onemail-users h4 {
  color: var(--onemail-color);
  border-bottom-color: var(--onemail-color);
}

.onemail-users h4::after {
  background-color: var(--onemail-color);
}

.ms365-users {
  background-color: var(--ms365-light);
  border-top: 3px solid var(--ms365-color);
}

.ms365-users h4 {
  color: var(--ms365-color);
  border-bottom-color: var(--ms365-color);
}

.ms365-users h4::after {
  background-color: var(--ms365-color);
}

.user-type-card ul {
  padding-left: 10px;
  margin: 0;
  list-style-type: none;
}

.user-type-card li {
  margin-bottom: 10px;
  font-size: 15px;
  position: relative;
  padding-left: 25px;
  line-height: 1.5;
}

.user-type-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.onemail-users li::before {
  color: var(--onemail-color);
}

.ms365-users li::before {
  color: var(--ms365-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .benefits-section h3, 
  .user-recommendation h3 {
    font-size: 20px;
  }
  
  .benefit-content h4 {
    font-size: 16px;
  }
  
  .benefit-content p,
  .user-type-card li {
    font-size: 14px;
  }
}

    /* Mobile optimization - HubSpot-inspired mobile layout */
    @media (max-width: 768px) {
      /* Container adjustments */
      .container {
        padding: 15px;
      }
      
      .page-header {
        margin-bottom: 25px;
      }
      
      .page-header h1 {
        font-size: 26px;
      }
      
      /* Tabs navigation */
      .tab-navigation {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 25px;
      }
      
      .tab-button {
        width: auto;
        flex: 1 0 auto;
        min-width: 100px;
        max-width: none;
        padding: 10px;
        border-radius: 4px;
        flex-direction: row;
        align-items: center;
        text-align: left;
        justify-content: flex-start;
        gap: 10px;
      }
      
      .tab-icon {
        height: 40px;
        width: 40px;
        margin-bottom: 0;
      }
      
      .tab-icon div {
        width: 40px !important;
        height: 40px !important;
        font-size: 12px;
      }
      
      .dual-icon {
        gap: 5px;
      }
      
      .dual-icon div {
        width: 30px !important;
        height: 30px !important;
      }
      
      .tab-label {
        flex: 1;
      }
      
      .tab-label h3 {
        font-size: 14px;
        margin-bottom: 0;
      }
      
      .tab-label p {
        display: none; /* Hide description on mobile */
      }
      
      /* Plans grid - HubSpot style */
      .plans-grid {
        display: block; /* Switch to vertical layout */
        max-width: 100%;
      }
      
      .plan-card {
        margin-bottom: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      }
      
      /* More compact header */
      .plan-header {
        padding: 12px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
      }
      
      .plan-header h3 {
        font-size: 16px;
        margin-bottom: 0;
        flex: 1;
      }
      
      .plan-header p {
        font-size: 12px;
        margin-bottom: 0;
        width: 100%;
        margin-top: 4px;
        display: none; /* Hide on smallest screens */
      }
      
      /* Price directly in header for mobile - HubSpot style */
      .plan-body {
        padding: 15px;
      }
      
      .plan-price {
        margin-bottom: 15px;
        text-align: left;
      }
      
      .plan-price-amount {
        font-size: 20px;
        display: inline-block;
      }
      
      .plan-price-period {
        font-size: 13px;
        display: inline-block;
      }
      
      /* Feature list */
      .feature-list {
        margin-bottom: 15px;
      }
      
      .feature-item {
        margin-bottom: 8px;
        font-size: 13px;
      }
      
      .feature-icon {
        margin-right: 8px;
      }
      
      /* Footer */
      .plan-footer {
        padding: 12px 15px;
      }
      
      .btn {
        width: 100%;
        padding: 10px;
        font-size: 14px;
      }
      
      /* Tab content */
      .tab-content-wrapper {
        min-height: auto;
      }
      
      /* Hide debug panel on mobile */
      .debug-panel {
        display: none;
      }
      .smartermail-features {
    padding: 25px 16px;
  }

  .smartermail-features h2 {
    font-size: 20px;
  }

  .feature-category h3 {
    font-size: 16px;
  }

  .feature-category ul li {
    font-size: 14px;
    padding-left: 22px;
  }
    }
    
    
    /* Extra small devices */
    @media (max-width: 480px) {
      .page-header h1 {
        font-size: 22px;
      }
      
      .page-header p {
        font-size: 13px;
      }
      
      /* Make tabs stack vertically on very small screens */
      .tab-navigation {
        flex-direction: column;
        align-items: stretch;
      }
      
      .tab-button {
        width: 100%;
      }
      
      /* Show header price on mobile */
      .mobile-price-display {
        font-weight: 600;
        color: var(--primary-dark);
        margin-left: auto;
        font-size: 16px;
      }
      
      .hybrid-plan .mobile-price-display {
        color: var(--purple);
      }
      
      .ms365-plan .mobile-price-display {
        color: var(--red);
      }
      .smartermail-features {
    padding: 20px 14px;
  }

  .smartermail-features h2 {
    font-size: 18px;
  }

  .feature-category h3 {
    font-size: 15px;
  }

  .feature-category ul li {
    font-size: 13.5px;
    margin-bottom: 8px;
  }
    }
    /* Why Nine Web Section */
.why-nine-web-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  margin-top: 60px;
}

.section-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-hero h2 {
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.section-hero p {
  font-size: 18px;
  color: var(--text-medium);
  line-height: 1.6;
}

/* Benefits Main Grid */
.benefits-main-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.benefit-card-large {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-card-large:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.benefit-card-large h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 15px;
}

.benefit-card-large p {
  font-size: 16px;
  color: var(--text-medium);
  margin-bottom: 20px;
  line-height: 1.6;
}

.benefit-details {
  list-style: none;
  padding: 0;
  text-align: left;
}

.benefit-details li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-dark);
  border-bottom: 1px solid #f0f0f0;
}

.benefit-details li:last-child {
  border-bottom: none;
}

/* Expertise Section */
.expertise-section {
  background: white;
  padding: 60px 40px;
  border-radius: 12px;
  margin-bottom: 60px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.expertise-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.expertise-text h3 {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.expertise-text p {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 30px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-medium);
}

.team-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Service Comparison */
.service-comparison {
  margin-bottom: 60px;
}

.service-comparison h3 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.comparison-table-wrapper {
  overflow-x: auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.comparison-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: var(--text-dark);
}

.nineweb-column {
  background-color: var(--primary-light) !important;
  color: var(--primary) !important;
}

.checkmark {
  color: var(--accent-color);
  font-weight: 600;
}

.cross {
  color: #dc3545;
}

.limited {
  color: #ffc107;
}

/* Success Stories */
.success-stories {
  margin-bottom: 60px;
}

.success-stories h3 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.quote-icon {
  font-size: 48px;
  color: var(--primary-light);
  position: absolute;
  top: 15px;
  right: 20px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-medium);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  color: var(--text-dark);
  font-size: 16px;
  margin-bottom: 5px;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 14px;
}

/* Getting Started CTA */
.getting-started-cta {
    background: linear-gradient(135deg, #013667, #001a33);
  color: white;
  padding: 50px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.cta-text h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.cta-text p {
  font-size: 16px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-outline {
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: white;
  color: var(--primary);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.btn-outline {
  border: 2px solid white;
  color: white;
  background: transparent;
}

/* Trust Indicators */
.trust-indicators {
  text-align: center;
}

.trust-content h4 {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 20px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.trust-badge img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.trust-badge span {
  font-size: 12px;
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-hero h2 {
    font-size: 24px;
  }
  
  .benefits-main-grid {
    grid-template-columns: 1fr;
  }
  
  .expertise-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-content {
    text-align: center;
    flex-direction: column;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .trust-badges {
    gap: 20px;
  }
}
    /* Modal Overlay */
    .modal-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      justify-content: center;
      align-items: center;
      z-index: 999;
      padding: 10px;
      box-sizing: border-box;
    }

       /* Modal styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow-y: auto;
  padding: 20px;
}

.modal-content {
  position: relative;
  background-color: white;
  margin: 40px auto;
  padding: 2rem;
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: modalOpen 0.3s ease-out;
}

@keyframes modalOpen {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-button {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  background: none;
  border: none;
  padding: 0.5rem;
  line-height: 1;
}

.close-button:hover {
  color: #333;
}

/* Form styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #033567;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #033567;
}

.form-group textarea {
  height: 100px;
  resize: vertical;
  min-height: 100px;
}
.price-display {
  background: #f0f8ff;
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
  text-align: center;
}

.estimated-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #033567;
}