* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  min-height: 100vh;
  background-color: #1a0933;
  overflow-x: hidden;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2% 4%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  display: grid;
  grid-template-columns: 45% 45%;
  gap: 10%;
  flex: 1;
  margin-bottom: 2rem;
}

.title-wrap {
  white-space: nowrap;
  margin-bottom: 1.5rem;
}

.title {
  font-family: 'Bodoni FLF', serif;
  font-size: clamp(60px, 8vw, 120px);
  color: #e8e185;
  line-height: 1;
}

.subtitle {
  font-family: 'Lovelace', serif;
  /* color: #a6a6a6; */
  font-size: clamp(24px, 2.5vw, 32px);
  text-align: right;
  margin: 1rem 0 2.5rem;
  color: #e8e185;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 35%; /* Increased height */
  background-color: #2a1f3e;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.video-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #e8e185;
  font-size: clamp(18px, 2vw, 24px);
  text-align: center;
  width: 100%;
}

.form-url {
  text-align: center;
  color: #a6a6a6;
  font-size: clamp(14px, 1.5vw, 18px);
  margin-top: 1.5rem;
  letter-spacing: 1px;
  word-break: break-all;
}

.hero-text {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.4;
  color: #a6a6a6;
  margin-bottom: 2rem;
}

.form-section {
  max-width: 450px; /* Increased width */
  margin: auto;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.input-group {
  margin-bottom: 0.8rem;
}

.input-group label {
  font-size: 13px;
  margin-bottom: 0.3rem;
  color: #fff;
  font-weight: 500;
}

.input-group input {
  width: 100%;
  padding: 0.7rem;
  font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #f5f5f5;
  border-radius: 6px;
  outline: none;
  transition: 0.3s;
}

.input-group input:focus {
  border-color: #ffd700;
  background: rgba(255, 255, 255, 0.15);
}

.cta-button {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, #ffd700, #ffae00);
  color: #000;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; /* Space between text and price */
  position: relative;
  flex-direction: column;
  text-align: center;
}

.cta-button .price {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  display: flex;
  align-items: center;
  gap: 6px;
  font-style: sans-serif;
}

.cta-button .price s {
  color: #ff0000;
  font-size: 14px;
}

.cta-button .discount {
  font-size: 14px;
  font-weight: 700;
  color: white; /* Green color for discount */
  background: red;
  padding: 2px 6px;
  border-radius: 4px;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 15px rgba(255, 215, 0, 0.6);
}

.cta-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}


.about-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 2rem;
}

.about-image-container {
  width: clamp(120px, 15vw, 180px);
  height: clamp(120px, 15vw, 180px);
  align-self: center;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-content {
  flex: 1;
}

.about-title {
  font-family: 'Symphony', serif;
  color: #4682b4;
  font-size: clamp(40px, 5vw, 70px);
  position: relative;
  margin-bottom: 1.5rem;
}

.about-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: white;
}

.about-text {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.8;
  color: #a6a6a6;
  margin-bottom: 1.5rem;
}

.cheers-text {
  font-size: clamp(18px, 2vw, 21px);
  color: #4682b4;
  text-align: center;
  margin: 1rem 0;
}

.founders {
  text-align: right;
  font-style: italic;
  color: #a6a6a6;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.5;
}

.bottom-text-container {
  text-align: center;
  padding: 2rem 0;
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.bottom-text {
  font-family: 'Bodoni FLF', serif;
  color: #e8e185;
  font-size: clamp(20px, 2.5vw, 27px);
  line-height: 1.4;
  max-width: 90%;
  margin: 0 auto;
}

.highlight {
  color: #ff6442;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .container {
      padding: 2rem;
  }
  
  .main-content {
      gap: 5%;
  }
}

@media screen and (max-width: 768px) {
  .main-content {
      grid-template-columns: 1fr;
      gap: 2rem;
  }

  .about-section {
      grid-template-columns: 1fr;
      text-align: center;
  }

  .about-image-container {
      margin: 0 auto;
  }

  .founders {
      text-align: center;
  }

  .about-title {
      text-align: center;
  }

  html, body {
      overflow-y: auto;
  }
}

@media screen and (max-width: 480px) {
  .container {
      padding: 1rem;
  }
  
  .video-container {
      padding-top: 75%;
  }
}

.success-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.success-content {
  text-align: center;
  max-width: 600px;
  padding: 3rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.success-title {
  color: #28a745;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.success-message {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.success-details {
  margin-bottom: 1.5rem;
  color: #666;
}

.success-contact {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 2rem;
}

.return-home {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.return-home:hover {
  background: #0056b3;
}

/* Form validation styles */
.input-group input.invalid {
  border-color: #dc3545;
  /* background-color: #fff8f8; */
}

/* Error message styles */
.error-message {
  background-color: #dc3545;
  color: white;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 15px;
  font-size: 14px;
  text-align: center;
  animation: slideIn 0.3s ease-out;
}

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin-right: 10px;
}

/* Disabled button styles */
/* .cta-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
} */

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes slideIn {
  from {
      transform: translateY(-20px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }

}

/* Keep all existing CSS and add the following at the end */

/* Top Navigation */
.top-nav {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  padding: 1rem 0;
  color: #e8e185;
}

.top-nav a {
  /* color: #a6a6a6; */
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  color: #4682b4;

}

.top-nav a:hover {
  color: #ffd700;
}

/* Mental Health Section */
.mental-health-section {
  margin-top: 4rem;
  padding: 0;
  text-align: center;
  /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.section-heading {
  font-family: 'Bodoni FLF', serif;
  color: #fff;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Footer Styles */
.footer {
  margin-top: 1rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #a6a6a6;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffd700;
}

.contact-info {
  text-align: center;
  color: #a6a6a6;
  font-size: 0.9rem;
}

.contact-info .email,
.contact-info .phone {
  margin: 0.5rem 0;
}

.contact-info a {
  color: #a6a6a6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #ffd700;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .footer-links {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
  }

  .section-heading {
      font-size: 16px;
      padding: 0 1rem;
  }

  .contact-info {
      padding: 0 1rem;
  }
}

/* Additional pages styles */
.terms-page,
.privacy-page,
.refund-page,
.business-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  color: #a6a6a6;
}

.page-title {
  color: #4682b4;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.page-content {
  line-height: 1.6;
}

/* ////////////////////////////////////////////////////////////////// */
/* Mobile Responsive Updates */

/* Base responsive adjustments */
@media screen and (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .main-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .title {
    font-size: clamp(40px, 8vw, 60px);
    text-align: center;
  }

  .subtitle {
    text-align: center;
    font-size: clamp(18px, 4vw, 24px);
    margin: 1rem 0;
  }

  video {
    width: 100%;
    height: auto;
  }

  .form-url {
    font-size: 14px;
    margin: 1rem 0;
    word-break: break-all;
  }

  .hero-text {
    text-align: center;
    font-size: 16px;
    margin: 1.5rem 0;
  }

  .form-section {
    max-width: 100%;
    padding: 1rem;
  }

  .input-group {
    margin-bottom: 1rem;
  }

  .input-group label {
    font-size: 14px;
  }

  .input-group input {
    padding: 0.8rem;
    font-size: 16px;
  }

  .cta-button {
    padding: 0.8rem;
    font-size: 16px;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    margin-top: 3rem;
  }

  .about-image-container {
    margin: 0 auto;
    width: 150px;
    height: 150px;
  }

  .about-title {
    font-size: 32px;
    text-align: center;
  }

  .about-text {
    font-size: 14px;
    text-align: center;
  }

  .bottom-text {
    font-size: 18px;
    padding: 0 1rem;
  }

  .mental-health-section {
    margin-top: 2rem;
  }

  .section-heading {
    font-size: 16px;
    padding: 1rem;
  }
}

/* Small mobile screens */
@media screen and (max-width: 480px) {
  .container {
    padding: 0.8rem;
  }

  .title {
    font-size: clamp(32px, 7vw, 40px);
  }

  .subtitle {
    font-size: 16px;
  }

  .form-section {
    padding: 0.8rem;
  }

  .cta-button {
    font-size: 14px;
  }

  .cta-button .price {
    font-size: 14px;
  }

  .cta-button .discount {
    font-size: 12px;
  }

  .about-image-container {
    width: 120px;
    height: 120px;
  }

  .footer-links {
    gap: 1rem;
  }

  .footer-links a {
    font-size: 12px;
  }

  .contact-info {
    font-size: 12px;
  }
}

/* Medium-sized tablets */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .main-content {
    grid-template-columns: 1fr 1fr;
    gap: 4%;
  }

  .title {
    font-size: clamp(50px, 6vw, 80px);
  }

  .form-section {
    max-width: 100%;
  }
}