.hero {
  background: linear-gradient(to right, #007bff, #6610f2);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 15px;
  margin-bottom: 30px;
}

.cta-buttons a {
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 5px;
  background-color: #ffc107;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.cta-buttons a:hover {
  background-color: #e0a800;
}

.features {
  padding: 60px 20px;
}

.feature-box {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: 0.3s;
}

.feature-box:hover {
  background-color: #e9ecef;
}

header.navbar {
  background-color: #343a40;
}

header .navbar-brand,
header .nav-link {
  color: #ffffff !important;
}

header .nav-link:hover {
  color: #ffc107 !important;
}
.template-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.template-card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s;
}

.template-card:hover {
  transform: translateY(-5px);
}

.template-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.template-actions a {
  margin-right: 5px;
}
