body {
  background: #ffffff;
  color: #1f2937;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Professional gradient text */
.gradient-text {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Professional hover effects */
.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15);
}

/* Professional hero background */
.hero-bg {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
}

/* Professional card styling */
.professional-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.professional-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(30, 64, 175, 0.15);
  border-color: #3b82f6;
}

/* Professional button styling */
.btn-primary {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

/* Professional section backgrounds */
.section-light {
  background: #ffffff;
}

.section-gray {
  background: #f8fafc;
}

.btn-primary, .btn-secondary, button, a.btn-primary, a.btn-secondary {
  position: relative;
  overflow: hidden;
  transition: color 0.3s, background 0.3s;
  z-index: 1;
}
.btn-primary::before, .btn-secondary::before, button::before, a.btn-primary::before, a.btn-secondary::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #2563eb 0%, #38bdf8 100%); /* blue to sky for btn-primary */
  z-index: 0;
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
  opacity: 0.15;
}
.btn-secondary::before, a.btn-secondary::before {
  background: linear-gradient(90deg, #f59e42 0%, #f43f5e 100%); /* orange to pink for btn-secondary */
}
.btn-primary:hover::before, .btn-secondary:hover::before, button:hover::before, a.btn-primary:hover::before, a.btn-secondary:hover::before {
  width: 100%;
}

.btn-primary span, .btn-secondary span, button span, a.btn-primary span, a.btn-secondary span {
  position: relative;
  z-index: 1;
}

/* FAQ Accordion Styles */
.faq-item {
  background: linear-gradient(135deg, #1e40af, #3b82f6); /* default blue */
  transition: background 0.3s, color 0.3s;
}
.faq-item.faq-open {
  background: linear-gradient(135deg, #1e40af, #3b82f6); /* keep blue for item */
}
.faq-item.faq-open .faq-answer {
  background: #fff !important;
  color: #1e293b !important;
  border-radius: 0 0 1rem 1rem;
  box-shadow: 0 4px 24px rgba(30, 64, 175, 0.07);
}
.faq-item.faq-open .faq-question {
  background: transparent !important;
  color: #fff !important;
}
.faq-answer {
  background: #fff;
  color: #1e293b;
  transition: background 0.3s, color 0.3s;
}
@media (max-width: 640px) {
  .faq-answer {
    padding-top: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
  }
}


/* Privacy Policy Page Styles */
.privacy-container {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(30,64,175,0.08);
  padding: 3rem 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.privacy-container h1 {
  color: #1e40af;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.privacy-container h2 {
  color: #2563eb;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.privacy-container ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.privacy-container li {
  margin-bottom: 0.5rem;
  color: #334155;
}
.privacy-container p, .privacy-container li {
  font-size: 1.08rem;
  line-height: 1.7;
}
.privacy-container a {
  color: #1e40af;
  text-decoration: underline;
}
.privacy-container a:hover {
  color: #3b82f6;
}
.privacy-container .text-gray-500 {
  color: #64748b;
}
@media (max-width: 600px) {
  .privacy-container {
    padding: 1.5rem 0.5rem;
    border-radius: 1rem;
  }
  .privacy-container h1 {
    font-size: 2rem;
  }
}

/* Mobile Header Styles */
/* Hide mobile header nav by default on larger screens; it's shown only when `.open` is added at mobile sizes */
.mobile-header-nav {
  display: none;
}
@media (max-width: 767px) {
  header {
    padding: 0.75rem 0;
  }
  header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 1rem;
    padding-right: 2.5rem;
  }
  header h1, header .text-3xl {
    font-size: 1.5rem;
  }
  header nav {
    display: none !important;
  }
  .mobile-header-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: #fff;
    box-shadow: 0 8px 32px rgba(30,64,175,0.08);
    z-index: 100;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    padding: 1.5rem 1rem;
    gap: 1.25rem;
    animation: slideDownMobileNav 0.3s;
  }
  .mobile-header-nav.open {
    display: flex;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 2rem;
    color: #1e40af;
    margin-left: 1rem;
    cursor: pointer;
    z-index: 101;
  }
  nav.space-x-8 {
    display: none !important;
  }
}

/* Mobile Header & Menu */
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #fff;
  position: relative;
  z-index: 1001;
}
.hamburger {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1101;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
  display: block;
  background: #1e3a8a;
  height: 4px;
  width: 28px;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.hamburger span::before,
.hamburger span::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger span::before {
  top: -9px;
}
.hamburger span::after {
  top: 9px;
}
.hamburger.active span {
  background: transparent;
}
.hamburger.active span::before {
  top: 0;
  transform: rotate(45deg);
}
.hamburger.active span::after {
  top: 0;
  transform: rotate(-45deg);
}
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30, 58, 138, 0.5);
  z-index: 1100;
  transition: opacity 0.3s;
}
.mobile-nav-overlay.active {
  display: block;
  opacity: 1;
}
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 4px 24px rgba(30,58,138,0.08);
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  z-index: 1102;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  border-radius: 0 0 1.5rem 1.5rem;
}
.mobile-nav.active {
  transform: translateY(0);
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav li {
  margin-bottom: 1.2rem;
}
.mobile-nav li:last-child {
  margin-bottom: 0;
}
.mobile-nav a {
  color: #1e3a8a;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav a:hover {
  color: #2563eb;
}
@media (min-width: 1024px) {
  .mobile-header, .hamburger, .mobile-nav, .mobile-nav-overlay {
    display: none !important;
  }
}
@keyframes slideDownMobileNav {
  from { opacity: 0; transform: translateY(-20px);}
  to { opacity: 1; transform: translateY(0);}
}
