.services-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* PC: 3 cột */
  gap: 24px;
  padding: 0px;
}

.services-wrapper section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 16px;
  overflow: hidden; /* để ảnh không tràn khi zoom */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-wrapper section:hover {
  transform: translateY(-10px); /* vuốt lên */
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.services-wrapper h2 {
  font-size: 1.4rem;
  color: #f37021; /* Cam FPT */
  margin-bottom: 10px;
}

.services-wrapper p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
  margin-bottom: 12px;
}

.services-wrapper a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 12px;
}

.services-wrapper a img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.services-wrapper a img:hover {
  transform: scale(1.08); /* zoom ảnh */
}

/* Responsive cho tablet và mobile */
@media (max-width: 1024px) {
  .services-wrapper {
    grid-template-columns: repeat(2, 1fr); /* Tablet: 2 cột */
  }
}

@media (max-width: 768px) {
  .services-wrapper {
    grid-template-columns: 1fr; /* Mobile: 1 cột */
    gap: 16px;
    padding: 0px;
  }

  .services-wrapper h2 {
    font-size: 1.2rem;
  }

  .services-wrapper p {
    font-size: 0.9rem;
  }
}
/* Section CTA */
.cta-fpt {
  background: #fff6f2; /* nền sáng pha cam */
  text-align: center;
  padding: 50px 20px;
  border-radius: 16px;
  margin: 40px auto;
  max-width: 1000px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.cta-fpt h2 {
  font-size: 2rem;
  color: #f37021;
  margin-bottom: 15px;
}

.cta-fpt h3 {
  font-size: 1.4rem;
  color: #333;
  margin: 20px 0 10px;
}

.cta-fpt p {
  font-size: 1rem;
  color: #444;
  margin: 8px 0;
  line-height: 1.6;
}

.cta-buttons {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.cta-buttons a {
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
  background: #f37021;
  color: #fff;
  box-shadow: 0 4px 8px rgba(243, 112, 33, 0.3);
}

.cta-buttons .btn-primary:hover {
  background: #d65a11;
  box-shadow: 0 6px 12px rgba(243, 112, 33, 0.5);
  transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
  background: #fff;
  color: #f37021;
  border: 2px solid #f37021;
}

.cta-buttons .btn-secondary:hover {
  background: #f37021;
  color: #fff;
  transform: translateY(-2px);
}
/* Responsive cho CTA */
@media (max-width: 600px) {
  .cta-fpt h2 {
    font-size: 1.5rem;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .cta-buttons a {
    width: 100%;
    text-align: center;
  }
}

