/* Estilos para la sección Why Choose Business Email */
.why-choose-email {
  background-color: #f9f9f9;
}

.why-choose-email .se-title {
  position: relative;
  margin-bottom: 40px;
}

.why-choose-email .read-more {
  color: #0060fe;
  font-weight: 600;
  text-decoration: none;
  position: absolute;
  right: 0;
  top: 10px;
}

.feature-box {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px 20px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-box .icon {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-box .icon img {
  max-height: 64px;
  max-width: 64px;
}

.feature-box .feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.feature-box .feature-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
}

/* Estilos para la sección de pestañas de características */
.email-features-tabs {
  background-color: #fff;
}

.email-tabs-nav {
  margin-bottom: 30px;
}

.email-tabs-nav .nav-tabs {
  border-bottom: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.email-tabs-nav .nav-item {
  flex: 1;
  text-align: center;
  margin: 0 5px;
}

.email-tabs-nav .nav-link {
  border: 1px solid #e0e0e0;
  border-radius: 0;
  padding: 15px 10px;
  color: #666;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.email-tabs-nav .nav-link.active {
  color: #0060fe;
  background-color: #fff;
  border-bottom: 3px solid #0060fe;
}

.email-tabs-nav .tab-icon {
  height: 40px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.email-tabs-nav .tab-icon img {
  max-height: 40px;
  max-width: 40px;
}

.email-tabs-nav .nav-link span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.tab-content .feature-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.tab-content .feature-description {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
}

.tab-content .feature-image {
  max-width: 100%;
  height: auto;
}

/* Estilos para dispositivos móviles */
@media (max-width: 768px) {
  .email-tabs-nav .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }
  
  .email-tabs-nav .nav-item {
    flex: 0 0 auto;
    width: 120px;
    margin-bottom: 10px;
  }
  
  .email-tabs-nav .nav-link {
    padding: 10px 5px;
  }
  
  .email-tabs-nav .tab-icon {
    height: 30px;
  }
  
  .email-tabs-nav .tab-icon img {
    max-height: 30px;
  }
  
  .email-tabs-nav .nav-link span {
    font-size: 10px;
  }
  
  .tab-content .row {
    flex-direction: column-reverse;
  }
  
  .tab-content .col-lg-6 {
    margin-bottom: 30px;
  }
  
  .mobile-tabs {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  
  .mobile-tabs::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
  }
}