/* Signup Section Styles */
.signup-section {
  background-color: #f1f7f3;
  padding: 60px 20px;
}

.signup-section h2 {
  text-align: center; 
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #355e3b;
  font-family: 'JUST Sans', sans-serif;
}

.signup-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.signup-card {
  background-color: #ffffff;
  border-radius: 15px;
  width: 450px;
  padding: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  margin-top: 15px;
}

/* Header Styling */
.signup-header {
  padding: 40px 30px;
  color: #ffffff;
  text-align: center;
  overflow: visible;
  border-radius: 15px 15px 0 0;
}

.signup-header.green {
  background-color: #5a7c65;
}

.signup-header.orange {
  background-color: #f2864f;
}

.signup-header h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: 700;
  font-family: 'JUST Sans', sans-serif;
}

.signup-header p {
  font-size: 1rem;
  opacity: 0.95;
  margin: 0;
}

/* Form Content */
.signup-content {
  padding: 40px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Form Styling */
.signup-form {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.signup-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
  font-size: 1rem;
}

.signup-form input {
  width: 100%;
  padding: 15px;
  border-radius: 30px;
  border: 1px solid #e0e0e0;
  font-size: 1rem;
  margin-bottom: 20px;
  background-color: #f8f8f8;
  box-sizing: border-box;
}

.signup-form input::placeholder {
  color: #999;
}

.btn-signup {
  width: 100%;
  padding: 15px;
  border-radius: 30px;
  background-color: #f2864f;
  color: white;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-bottom: 15px;
}

.btn-signup:hover {
  background-color: #e57441;
  transform: translateY(-2px);
}

.form-note {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-top: 0;
}

/* Best Value Badge */
.best-value-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background-color: white;
  color: #f2864f;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 2;
  white-space: nowrap;
  overflow: visible;
}

/* Price Display */
.price-display {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  gap: 15px;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1.5rem;
  font-weight: 500;
}

.sale-price {
  color: #f2864f;
  font-size: 3rem;
  font-weight: 700;
}

.price-subtitle {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin-bottom: 25px;
  font-weight: 500;
}

/* Offer Features */
.offer-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: bold;
}

.feature-icon.green {
  background-color: #e8f5e9;
  color: #5a7c65;
}

.feature-icon.orange {
  background-color: #ffeee8;
  color: #f2864f;
}

.feature-text {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.4;
}

.feature-highlight {
  color: #f2864f;
  font-weight: 600;
}

/* Terms Text */
.terms-text {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #777;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.terms-text a {
  color: #555;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 960px) {
  .signup-card {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 30px;
  }
  
  .signup-container {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .signup-section {
    padding: 40px 10px;
  }
  
  .signup-card {
    width: 100%;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .signup-header {
    padding: 25px 15px;
  }
  
  .signup-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  
  .signup-header p {
    font-size: 0.9rem;
  }
  
  .signup-content {
    padding: 25px 15px;
  }
  
  .btn-signup {
    width: 100%;
    padding: 12px 10px;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  
  /* Make the text in the buttons smaller to fit in one line */
  .signup-card:first-child .btn-signup {
    font-size: 0.85rem;
  }
  
  .signup-card:last-child .btn-signup {
    font-size: 0.85rem;
  }
  
  .form-note {
    font-size: 0.8rem;
  }
  
  .sale-price {
    font-size: 2.2rem;
  }
  
  .original-price {
    font-size: 1.3rem;
  }
  
  .price-subtitle {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .feature-text {
    font-size: 0.85rem;
  }
  
  .offer-features {
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .feature-icon {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
  
  .best-value-badge {
    font-size: 0.9rem;
    padding: 8px 20px;
  }
}
