/* About Section */
.about {
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  padding: 100px 20px;
  text-align: center;
}

.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-header h2 {
  font-size: 3.5rem;
  color: #0056ff;
  margin-bottom: 20px;
  font-weight: bold;
}

.about-description {
  font-size: 1.6rem;
  color: #555555;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-content: center;
  align-items: start;
}

.about-item {
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.about-icon img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.about-text h3 {
  font-size: 2rem;
  color: #333333;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 1.4rem;
  color: #666666;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-header h2 {
    font-size: 3rem;
  }

  .about-description {
    font-size: 1.4rem;
  }

  .about-text h3 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .about-header h2 {
    font-size: 2.5rem;
  }

  .about-description {
    font-size: 1.2rem;
  }

  .about-text h3 {
    font-size: 1.6rem;
  }

  .about-text p {
    font-size: 1rem;
  }
}
