* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Arial', sans-serif;
  overflow: hidden;
}

.main-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #6a0dad, #9b4dca); /* Purple gradient */
  position: relative;
  text-align: center;
  animation: fadeIn 3s ease-out;
  color: #fff;
}

.content {
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  animation: slideUp 1.5s ease-out;
}

.title {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInTitle 2s forwards;
}

.subtitle {
  font-size: 1.8em;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInSubtitle 2s forwards;
  animation-delay: 1s;
}

.description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInDescription 2s forwards;
  animation-delay: 2s;
}

.actions {
  margin-top: 30px;
}

.cta-btn {
  background: linear-gradient(45deg, #ff6ec7, #ff7a5c); /* Gradient buttons */
  border: none;
  color: white;
  font-size: 1.2em;
  padding: 12px 25px;
  border-radius: 5px;
  margin: 10px;
  cursor: pointer;
  text-decoration: none; /* Remove underline for links */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.image-boxes {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.image-box {
  text-align: center;
  width: 300px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-box img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.image-box p {
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
}

.image-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInTitle {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInSubtitle {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDescription {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .title {
    font-size: 2.5em;
  }
  .subtitle {
    font-size: 1.4em;
  }
  .description {
    font-size: 1em;
  }
  
  .image-boxes {
    flex-direction: column;
  }

  .image-box {
    width: 80%;
    margin-bottom: 20px;
  }
}