/* Base */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  scroll-behavior: smooth;
  background: #f9f9f9;
}

/* Header */
header {
  background: linear-gradient(90deg, #003366, #0055aa);
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo {
  height: 80px;        /* better desktop size */
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo {
    height: 40px;
    max-width: 160px;
  }
}

header nav a {
  color: white;
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

header nav a:hover {
  color: #ffcc00;
}

/* Hero */
.hero {
  /* Stack gradient on top of local image */
  background: 
    linear-gradient(to right, rgba(230, 240, 255, 0.7), rgba(204, 224, 255, 0.7)),
    url('../images/pexels-bylukemiller-29566908.jpg') center/cover no-repeat;
  
  text-align: center;
  padding: 4rem 2rem;
  transition: transform 0.3s;
  position: relative;
}

.hero:hover {
  transform: scale(1.02);
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.hero .notice {
  background: #fffae6;
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem auto;
  display: inline-block;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


/* Buttons */
.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background: #003366;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: transform 0.2s, background 0.3s;
}

.btn:hover {
  background: #0055aa;
  transform: scale(1.05);
}

/* Sections */
section {
  padding: 3rem 2rem;
}

h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #003366;
}

/* How It Works */
.how-it-works .steps {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.step-box {
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  flex: 1 1 200px;
  min-width: 200px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.step-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Pricing */
.pricing-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.price-card {
  background: #f0f0f0;
  padding: 1rem;
  flex: 1 1 250px;
  min-width: 250px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.price-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Form */
form label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

form input, form select {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.25rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  transition: border 0.3s;
}

form input:focus, form select:focus {
  border-color: #003366;
  outline: none;
}

form .checkbox {
  margin-top: 1rem;
}

.captcha {
  margin: 1rem 0;
  text-align: center;
  font-style: italic;
  color: #555;
}

.disclosure-container {
  display: flex;
  align-items: flex-start;   /* aligns checkbox with top of text */
  gap: 0.5rem;               /* space between checkbox and text */
  background-color: #f9f9f9;
  border-radius: 6px;
  font-size: 0.95rem;
  padding: 0.5rem 1rem 0.5rem 0;  /* only padding on top/right/bottom, no left */
  border-left: 4px solid #003366; /* left border stays */
  border-right: 4px solid #003366; /* left border stays */
}

.disclosure-container input[type="checkbox"] {
  margin-left: 0; /* ensures checkbox is flush left inside flex */
}

.disclosure-text {
  padding-left: 0.5rem; /* optional spacing from border */
}


.disclosure-checkbox {
  display: flex;
  align-items: center;  /* vertically center text and checkbox */
  gap: 0.5rem;          /* space between checkbox and text */
  font-size: 0.95rem;
}


/* Page Separator */
.page-separator {
  border: none;
  height: 2px;
  background: linear-gradient(to right, #003366, #e6f0ff, #003366);
  margin: 3rem 0;
}

/* FAQ */
.faq-box {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer */
footer {
  background: linear-gradient(90deg, #003366, #0055aa);
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
}

/* Scroll Animations */
.hero, .step-box, .price-card, .faq-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.hero.animate, .step-box.animate, .price-card.animate, .faq-item.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-grid, .how-it-works .steps {
    flex-direction: column;
    align-items: center;
  }
}
.form-page {
  background: #ffffff;
  border: 4px solid #003366;
  border-radius: 12px;
  padding: 2rem;
  max-width: 600px;
  margin: 2rem auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  position: relative;
}

.form-page::before,
.form-page::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 4px solid #003366;
  border-radius: 50%;
}

.form-page::before { top: -12px; left: -12px; }
.form-page::after { bottom: -12px; right: -12px; }

.form-page h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #003366;
  font-size: 1.5rem;
}
