/* Page layout */
html, body {
  height: 100%;
  margin: 0;
}

  body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    background: #f3f4f6;
    /*background-image: url("background_logo.png");*/
    background-color: #cccccc;
    padding: 0;
    padding-bottom: 60px; /* space for footer */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  /* Wraps all content except foooter */
  .page-wrapper {
    flex: 1 0 auto;
  }
  header {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 50px 20px;
    text-align: center;
  }
  header h1 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  header p {
    font-size: 16px;
    opacity: 0.9;
  }
  a {
    text-decoration: none;
  }
  .container {
    max-width: 720px;
    margin: 0 auto;
    padding: 30px 20px 100px;
  }

  .pricing {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}

.plan {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 26px;
  width: 280px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.plan h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  font-weight: 700;
}

.plan h3,
.plan .price {
  text-align: center;
}

.price {
  font-size: 2.4rem;
  font-weight: 800;
  color: #2563eb;
  margin: 16px 0;
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  color: #6b7280;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  color: #4b5563;
}

.plan ul.checked li {
  position: relative;
  padding-left: 26px;
}

.plan ul.checked li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2563eb; /* darker blue */
  font-weight: 700;
}

.plan ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

/* FEATURED PLAN */
.plan.featured {
  border: 2px solid #2563eb;
  transform: scale(1.04);
}

.plan.featured:hover {
  transform: scale(1.04) translateY(-6px);
}

/* BADGE */
.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #ffffff;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.3px;
}


  .form-section {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .form-section h2 {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .form-section p {
    color: #6b7280;
    margin-bottom: 25px;
  }

  form {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  input, select, textarea {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 1rem;
  }

  textarea {
    min-height: 120px;
    resize: vertical;
  }

  button {
    margin-top: 10px;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: #2563eb;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
  }

  button:hover {
    background: #1d4ed8;
  }

  #formMessage {
    display: none;
    text-align: center;
    font-size: 1.35rem;
    font-weight: 600;
    color: #15803d; /* dark green */
    margin-top: 30px;
    line-height: 1.6;
  }

  .thank-you-box {
    padding: 30px 20px;
    background: #ecfdf5;
    border-radius: 14px;
    border: 1px solid #bbf7d0;
  }


  /* Footer */
  footer {
    flex-shrink: 0;
    background: #f1f5f9;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
  }
  footer a {
    color: #2563eb;
    text-decoration: none;
  }
