.about-description {
  font-size: 1.125rem;
  color: var(--text-color);
  margin-bottom: 3rem;
  padding: 0 1rem;
}

/* Features Grid Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Forces 4 columns */
  gap: 2rem;
  padding: 4rem var(--padding-x);
  max-width: var(--max-width);
  margin: 0 auto;
}

.feature-item {
  background-color: var(--secondary-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: all var(--transition-speed) ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%; /* Ensures equal height */
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: var(--primary-color);
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
}

.feature-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.feature-item p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color-light);
  margin-bottom: 1.5rem;
  flex-grow: 1; /* Makes content take available space */
}

.see-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition-speed) ease;
}

.see-more:hover {
  gap: 0.75rem;
}

.see-more::after {
  content: '→';
}

/* Spacing Utility Classes */
.mt-4 {
  margin-top: 4rem !important; /* Increased from 3rem to 4rem for more space */
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.section-cta {
  margin-top: 2rem;
}

/* If you want even more space, you could adjust these values */
.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-color-light);
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .features-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
      grid-template-columns: 1fr;
  }
}

.about-description {
  font-size: 1rem;
  padding: 0 0.5rem;
}
