/* Design Page Specific Styles */
.design-section {
  text-align: center;
  padding: 90px 10%;
  background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
  color: white;
}

.design-section h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

.design-section p {
  font-size: 20px;
  margin-bottom: 40px;
}

.templates {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.template {
  width: 650px;
  height: 800px;
  background: #4a00e0;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.template:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.cta-button {
  display: flex;
  padding: 15px 30px;
  background: #00ff99;
  color: #0f0c29;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  margin-bottom: 70px;
}

.cta-button:hover {
  background: #00cc80;
}
