/* ========== BASE ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f4f6f8;
  color: #333;
  padding: 20px;
}

/* ========== CONTAINER ========== */
.container {
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ========== HEADINGS ========== */
.form-heading {
  text-align: center;
  color: #0d6efd;
  font-size: 28px;
  margin-bottom: 8px;
}

.form-subtext {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* ========== FORM WRAPPER ========== */
.form-wrapper {
  background: #f9f9f9;
  padding: 24px;
  border-radius: 10px;
}

.contact-form .form-group {
  margin-bottom: 16px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea,
.contact-form input[type="file"] {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #fff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background-color: #0d6efd;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0b5ed7;
}

label {
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
  display: inline-block;
}

/* ========== FAQ ========== */
.faq-section h2,
.contact-info h2,
.notice-section h2 {
  margin-top: 30px;
  font-size: 20px;
  color: #0d6efd;
}

.faq {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.faq li {
  background: #eef3fa;
  padding: 10px 14px;
  border-left: 4px solid #0d6efd;
  margin-bottom: 10px;
  border-radius: 6px;
  font-size: 15px;
}

/* ========== NOTICE ========== */
.notice {
  background: #fff3cd;
  padding: 12px 16px;
  border-left: 5px solid #ffc107;
  border-radius: 6px;
  margin-top: 16px;
  font-size: 15px;
  color: #856404;
}

/* ========== PRIVACY ========== */
.privacy {
  font-size: 14px;
  margin-top: 16px;
  background: #f1f1f1;
  padding: 10px 14px;
  border-radius: 6px;
  color: #555;
}

.email-link {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 500;
}

/* ========== MOBILE DESIGN ========== */
@media (max-width: 600px) {
  .container {
    padding: 20px 16px;
    box-shadow: none;
    border-radius: 0;
  }

  .form-heading {
    font-size: 22px;
  }

  .form-subtext {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .form-wrapper {
    padding: 16px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .contact-form button {
    font-size: 14px;
  }

  .faq li {
    font-size: 14px;
  }

  .notice,
  .privacy {
    font-size: 13px;
  }
}
/* =======================
   Section Headings
======================= */
.faq-section h2,
.contact-info h2,
.notice-section h2 {
  font-size: 20px;
  color: #0d6efd;
  margin-top: 32px;
  margin-bottom: 12px;
}

/* =======================
   FAQ Styling
======================= */
.faq {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.faq li {
  background-color: #f1f4f9;
  padding: 12px 14px;
  border-left: 4px solid #0d6efd;
  margin-bottom: 12px;
  border-radius: 6px;
  font-size: 15px;
}

/* =======================
   Contact Info Section
======================= */
.contact-info p,
.extra-info p {
  margin-bottom: 10px;
  font-size: 15px;
  color: #444;
}

.contact-info a,
.extra-info a {
  color: #0d6efd;
  text-decoration: none;
}

.contact-info a:hover,
.extra-info a:hover {
  text-decoration: underline;
}

/* =======================
   Notice Section
======================= */
.notice {
  background-color: #fff9e5;
  border-left: 4px solid #ffc107;
  padding: 14px 16px;
  border-radius: 6px;
  color: #664d03;
  font-size: 15px;
}

/* =======================
   Privacy Statement
======================= */
.privacy {
  margin-top: 20px;
  background-color: #f1f3f5;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 14px;
  color: #555;
}

/* =======================
   Responsive Styling
======================= */
@media (max-width: 600px) {
  .faq li,
  .contact-info p,
  .extra-info p,
  .notice,
  .privacy {
    font-size: 14px;
    padding: 10px 12px;
  }

  .faq-section h2,
  .contact-info h2,
  .notice-section h2 {
    font-size: 18px;
    margin-top: 24px;
  }

  .faq li {
    margin-bottom: 10px;
  }
}
/* ========================
  /* ========================
   Modern Footer Styles
======================== */
.modern-footer {
  background-color: #ffffff;
  padding: 40px 20px 20px;
  color: #222;
  border-top: 1px solid #eee;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.03);
  font-family: 'Segoe UI', sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
}

.footer-brand,
.footer-links,
.footer-contact {
  flex: 1 1 250px;
  min-width: 220px;
}

.footer-brand h3 {
  color: #0d6efd;
  font-size: 22px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  color: #0d6efd;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #444;
  text-decoration: none;
  font-weight: 500;
}

.footer-links ul li a:hover {
  color: #0d6efd;
}

.footer-contact a.email-link {
  display: inline-block;
  margin: 8px 0;
  font-weight: 500;
  color: #0d6efd;
}

.footer-social {
  margin-top: 12px;
}

.social-btn {
  display: inline-block;
  padding: 8px 14px;
  margin-right: 8px;
  background-color: #f1f3f5;
  color: #0d6efd;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-btn:hover {
  background-color: #e2e6ea;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #777;
  border-top: 1px solid #eee;
  padding-top: 16px;
}

/* ========================
   Responsive Footer
======================== */
/* ============= Horizontal Footer on Mobile ============= */
@media (max-width: 768px) {
  .footer-top {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    flex: 0 0 85%;
    min-width: 250px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
  }

  .social-btn {
    display: inline-block;
    margin-right: 6px;
    margin-top: 8px;
  }

  .footer-bottom {
    text-align: center;
    font-size: 13px;
    padding-top: 12px;
  }
}


@media (max-width: 480px) {
  .modern-footer {
    padding: 30px 15px 15px;
  }

  .footer-brand h3,
  .footer-links h4,
  .footer-contact h4 {
    font-size: 18px;
  }

  .footer-bottom {
    font-size: 13px;
  }
}
