/* =========================================
   Static Pages: Privacy, Terms, About, Contact
   ========================================= */

.static-page {
  padding: 60px 0 80px;
  min-height: 70vh;
}

.static-page .container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Card Wrapper */
.static-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 48px 52px;
}

.static-card h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.static-card h1 i {
  color: #4F46E5;
  font-size: 1.7rem;
}

.last-updated {
  color: #94a3b8;
  font-size: 0.875rem;
  margin-bottom: 36px;
  display: block;
}

.static-card section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #f1f5f9;
}

.static-card section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.static-card h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
}

.static-card p {
  color: #4a5568;
  line-height: 1.75;
  font-size: 0.97rem;
}

.static-card a {
  color: #4F46E5;
  text-decoration: none;
  font-weight: 500;
}

.static-card a:hover {
  text-decoration: underline;
}

/* ── Contact Form ── */
.contact-form {
  margin-top: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #1a202c;
  background: #f8fafc;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4F46E5;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.12);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #4F46E5;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.btn-submit:hover {
  background: #4338ca;
  transform: translateY(-1px);
}

.btn-submit:active {
  transform: translateY(0);
}

/* ── Alerts ── */
.alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.95rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ── Contact Info ── */
.contact-info {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
  color: #4a5568;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info i {
  color: #4F46E5;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .static-card {
    padding: 28px 22px;
  }

  .static-card h1 {
    font-size: 1.5rem;
  }
}
