body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(../images/try3.png);
  background-color: rgba(0, 0, 0, 1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
    'Helvetica Neue', 'Ubuntu', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
section {
  background-color: #312f30;
  color: white;
  display: flex;
  flex-direction: column;
  width: 250px;
  min-height: 120px;
  border-radius: 8px;
  justify-content: space-between;
  margin: 10px;
  border: 1px solid #FFAC32;
  padding: 10px 0 0 0;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}
.product {
  display: flex;
  padding: 0 10px;
  align-items: center;
}
.description {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
p {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.154px;
  color: white;
  height: 100%;
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.trial-info {
  font-size: 12px;
  color: #FFAC32;
  padding: 0;
  margin: 4px 0 0 0;
  font-weight: bold;
  height: auto;
}
/* Product logo styling */
.product-logo {
  width: 45px;
  height: 45px;
  margin: 10px;
  border-radius: 6px;
  object-fit: contain;
}
h3,
h5 {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.154px;
  color: #FFAC32;
  margin: 0;
}
h3 {
  font-weight: bold;
}
h5 {
  color: white;
  opacity: 0.8;
}
a {
  text-decoration: none;
  color: white;
}
#checkout-and-portal-button {
  height: 42px;
  background: #FFAC32;
  color: #121212;
  width: 100%;
  font-size: 16px;
  border: 0;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.6;
  border-radius: 0 0 6px 6px;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.15);
}
#checkout-and-portal-button:hover {
  opacity: 0.9;
  background-color: #e99b22;
}

/* Add site branding */
.site-logo {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  object-fit: contain;
}

.page-title {
  text-align: center;
  color: #FFAC32;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Error message styling */
.error-message {
  background-color: rgba(255, 0, 0, 0.1);
  border: 1px solid red;
  color: white;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  display: none;
}

/* Animation for elements */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

/* Define the fadeInUp animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive design for mobile */
@media (max-width: 480px) {
  section {
    width: 90%;
    min-width: 300px;
  }
  
  .site-logo {
    width: 60px;
    height: 60px;
  }
  
  .page-title {
    font-size: 20px;
  }
  
  .product-logo {
    width: 35px;
    height: 35px;
  }
}