* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  margin: 0;
  background: #f5f7fb;
  color: #333;
  line-height: 1.7;
}
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 55px;
  width: auto;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}
nav ul li a:hover {
  color: #e63946;
}
.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("https://images.unsplash.com/photo-1600518464441-9154a4dea21b?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero-content {
  max-width: 650px;
}
.hero h1 {
  font-size: 55px;
  margin-bottom: 20px;
}
.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}
.btn {
  display: inline-block;
  padding: 14px 28px;
  background: #e63946;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}
.btn:hover {
  background: #003366;
}
section {
  padding: 70px 0;
}
.title {
  text-align: center;
  margin-bottom: 50px;
}
.title h2 {
  font-size: 38px;
  color: #003366;
  margin-bottom: 10px;
}
.title p {
  color: #777;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-8px);
}
.card h3 {
  margin-bottom: 15px;
  color: #003366;
}
.card h2 {
  margin-bottom: 15px;
  color: #003366;
  font-size: 22px;
  line-height: 1.35;
}
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}
.step {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.step h4 {
  color: #e63946;
  margin: 15px 0;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e63946;
  color: #fff;
  font-weight: 700;
}
.text-link {
  color: #e63946;
  font-weight: 600;
  text-decoration: none;
}
.text-link:hover {
  color: #003366;
}
.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: auto;
}
.area-list span,
.area-list a {
  background: #fff;
  border: 1px solid #dbe5f0;
  border-radius: 6px;
  color: #003366;
  font-weight: 600;
  padding: 12px 18px;
  text-decoration: none;
}
.area-list a:hover {
  border-color: #e63946;
  color: #e63946;
}
.review-mark {
  color: #e63946;
  font-size: 42px;
  font-weight: 700;
  line-height: 0.8;
}
.testimonials small {
  color: #777;
}
.faq-list {
  max-width: 850px;
  margin: auto;
}
.faq-list details {
  background: #fff;
  border-bottom: 1px solid #dbe5f0;
  padding: 20px 24px;
}
.faq-list details:first-child {
  border-top: 1px solid #dbe5f0;
}
.faq-list summary {
  color: #003366;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}
.faq-list p {
  color: #666;
  margin: 12px 24px 0 0;
}
.cta {
  background: #003366;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.cta h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
.cta .btn {
  margin-top: 24px;
}
footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 25px;
}
.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.contact-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.contact-box h3 {
  color: #003366;
  margin-bottom: 20px;
}
.contact-box p {
  margin-bottom: 15px;
}
.form-group {
  margin-bottom: 15px;
}
input,
textarea,
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}
button {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  background: #e63946;
  color: #fff;
  cursor: pointer;
}
button:hover {
  background: #003366;
}
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(135deg, #003366 0%, #e63946 100%);
}
.auth-wrapper {
  width: 100%;
  max-width: 460px;
}
.auth-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}
.auth-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.auth-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: linear-gradient(135deg, #003366, #e63946);
  color: #fff;
}
.auth-brand h2 {
  color: #003366;
  font-size: 28px;
  margin-bottom: 4px;
}
.auth-brand p {
  color: #667085;
  font-size: 14px;
}
.auth-alert {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
}
.auth-form .form-group {
  margin-bottom: 16px;
}
.auth-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #374151;
}
.auth-form input {
  background: #f8fafc;
  border: 1px solid #dbe3ee;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 15px;
}
.auth-btn {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  font-weight: 600;
  margin-top: 8px;
}
.table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.table th,
.table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
}
.table th {
  background: #003366;
  color: #fff;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #003366;
  cursor: pointer;
}
.admin-body {
  background: #f4f7fb;
}
.sidebar {
  background: linear-gradient(180deg, #003366 0%, #0f4c81 100%);
}
.sidebar .nav-link {
  color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 10px 12px;
}
.sidebar .nav-link:hover,
.sidebar .nav-link.active {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 120px 0;
  }
  .hero h1 {
    font-size: 38px;
  }
  .menu-toggle {
    display: block;
  }
  nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    display: none;
  }
  nav.open {
    display: block;
  }
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 5%;
    gap: 10px;
  }
  nav ul li {
    width: 100%;
  }
  nav ul li a {
    display: block;
    padding: 8px 0;
  }
}
