* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.feature-header-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
  background: white;
  padding-left: 60px;
  padding-right: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(62, 107, 224, 0.1);
}

.feature-header-content h2 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
}

.feature-header-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
  margin-top: 20px;
}

.feature-header-content hr {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3e6be0, #5584ff);
  border: none;
  margin-bottom: 30px;
  margin-top: 0px;
}

.feature-header-image {
  text-align: center;
}

.feature-header-image img {
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(62, 107, 224, 0.2));
}

.feature-page-indicator {
  text-align: center;
  color: #8492af;
  font-size: 1.2rem;
  margin-top: 10px;
  margin-bottom: 40px;
  font-weight: 500;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 5px 30px rgba(62, 107, 224, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(62, 107, 224, 0.15);
  border-color: #5584ff;
}

.feature-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3e6be0, #5584ff);
  color: white;
  border-radius: 12px;
  text-align: center;
  line-height: 60px;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.feature-card h2 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #282961;
  margin-bottom: 25px;
  line-height: 1.4;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 15px 0;
  border-bottom: 1px solid #f0f2f7;
  color: #8492af;
  line-height: 1.7;
  display: flex;
  align-items: start;
  text-align: left;
  font-size: 15px;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: "✓";
  display: inline-block;
  width: 26px;
  height: 26px;
  background: #3e6be0;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 26px;
  margin-right: 15px;
  flex-shrink: 0;
  font-weight: bold;
  font-size: 0.85rem;
}

.feature-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.feature-page-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0e5f0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.feature-page-dot:hover {
  background: #5584ff;
  transform: scale(1.2);
}

.feature-page-dot.active {
  background: #3e6be0;
  width: 40px;
  border-radius: 6px;
}

@media (max-width: 968px) {
  .feature-header-section {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .feature-card {
    padding: 30px;
  }
}
