
/* ==== Reset & Base ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  background-color: #f8fafc;
  color: #1e293b;
  line-height: 1.7;
}

/* ==== Links ==== */
a {
  color: #0a74da;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #004a9f;
}

/* ==== Headings ==== */
h1, h2, h3 {
  color: #0f172a;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* ==== Hero Section ==== */
.hero {
  position: relative;
  height: 60vh;
  background: linear-gradient(to right, #0a74da, #0b92e8);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 30, 80, 0.3);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* ==== Sections ==== */
section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

section h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #0a74da;
}

section p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #334155;
}

ul {
  list-style: none;
  margin-left: 1rem;
}

ul li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: start;
  gap: 0.6rem;
  font-size: 1rem;
  color: #475569;
}

ul li i {
  color: #0a74da;
  font-size: 1.1rem;
  margin-top: 0.3rem;
}

/* ==== FAQ ==== */
#faq .faq-item {
  margin-bottom: 1.5rem;
  background: #f9fafb;
  border-left: 4px solid #0a74da;
  padding: 1rem 1.5rem;
  border-radius: 6px;
}

#faq .faq-item h3 {
  color: #0a74da;
}

/* ==== Contact Form ==== */
#contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

#contact-form label {
  font-weight: 600;
  color: #0f172a;
}

#contact-form input,
#contact-form textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: all 0.2s ease;
  width: 100%;
}

#contact-form input:focus,
#contact-form textarea:focus {
  border-color: #0a74da;
  box-shadow: 0 0 0 3px rgba(10, 116, 218, 0.2);
}

#contact-form .btn {
  background-color: #0a74da;
  color: #fff;
  border: none;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.25s ease;
  align-self: flex-start;
}

#contact-form .btn:hover {
  background-color: #004a9f;
}

#responseMessage {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #0f172a;
}

/* ==== Quick Links ==== */
.quick-links {
  text-align: center;
  padding: 3rem 1rem;
}

.quick-links h3 {
  color: #0a74da;
  margin-bottom: 1rem;
}

.quick-links ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.quick-links a {
  color: #0a74da;
  font-weight: 500;
}
.quick-links a:hover {
  text-decoration: underline;
}



/* ==== Responsive Design ==== */

/* Tablets */
@media (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  section {
    padding: 3rem 1.5rem;
  }
  .hero {
    height: 50vh;
  }
  .hero-icon {
    font-size: 3.5rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .hero {
    height: 45vh;
    padding: 1.5rem;
  }
  .hero-icon {
    font-size: 2.8rem;
  }
  section {
    padding: 2rem 1rem;
  }
  #contact-form .btn {
    width: 100%;
    text-align: center;
  }
  .quick-links ul {
    flex-direction: column;
    gap: 0.8rem;
  }
}
