/* Global Styles */
body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  text-align: center;
  color: #333;
  background-color: #ffffff;
  min-height: 100vh;
}

.p {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.container {
  padding: 50px 20px;
  max-width: 600px;
  margin: 0 auto;
}

/* Logo Image */
.image-wrapper .logo {
  width: 160px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

/* Title and Subtitle */
.title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin-top: 20px;
  color: #ED1C23;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-top: 15px;
  color: #7f8c8d;
}

/* Button Wrapper */
.button-wrapper {
  margin-top: 5px;
}

/* Download Button Image (inside <a> or <button>) */
.download-button {
  width: 15%;
}

/* Button with Image */
.button-image {
  background: linear-gradient(45deg, #ff6b6b, #ED1C23);
  border: none;
  padding: 15px 30px;
  margin: 20px 0;
  cursor: pointer;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(238, 90, 36, 0.3);
  transition: all 0.3s ease;
}

.button-image:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(238, 90, 36, 0.4);
}

/* Footer */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #7f8c8d;
  padding: 15px;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid #efefef;
}

/* Responsive Media Query */
@media (max-width: 768px) {
  .container {
      padding: 50px 0px 50px 0px;
  }

  .image-wrapper .logo {
      width: 130px;
  }

  .title {
      font-size: 24px;
      margin-top: 20px;
  }

  .p {
      font-size: 16px;
      margin: 10px 0;
  }

  .subtitle {
      font-size: 16px;
      margin-top: 15px;
  }

  .download-button {
      width: 44%;
      margin-top: 10px;
  }
}
