/* Not Included Section Styles */
.not-included-section {
  padding: 6rem 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.not-included-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
  z-index: 0;
}

.not-included-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.not-included-header {
  text-align: center;
  margin-bottom: 3rem;
}

.not-included-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
  position: relative;
  display: inline-block;
}

.not-included-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #5d5dff;
  border-radius: 3px;
}

.not-included-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 1rem auto 0;
}

.not-included-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
}

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

.not-included-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.not-included-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f1f5f9;
}

.not-included-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.not-included-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #fee2e2;
  color: #ef4444;
  border-radius: 50%;
  margin-right: 1rem;
  font-weight: bold;
}

.not-included-text {
  font-size: 1.125rem;
  color: #334155;
  line-height: 1.5;
}

.not-included-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.not-included-cta {
  display: inline-flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: #5d5dff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.not-included-cta:hover {
  color: #4b4acf;
}

.not-included-cta-icon {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.not-included-cta:hover .not-included-cta-icon {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .not-included-section {
    padding: 4rem 0;
  }
  
  .not-included-title {
    font-size: 2rem;
  }
  
  .not-included-card {
    padding: 1.5rem;
  }
  
  .not-included-text {
    font-size: 1rem;
  }
}
