* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #ffffff;
}

header {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

header p {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: clamp(600px, 90vw, 1400px);
  margin: 0 auto;
}

.container {
  max-width: clamp(600px, 90vw, 1400px);
  margin: 0 auto;
  padding: 3rem 2rem;
}

.faq-section {
  margin-bottom: 3rem;
}

.faq-section h2 {
  font-size: 1.75rem;
  color: #1e40af;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #3b82f6;
}

.faq-item {
  background: #f9fafb;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-item h3 {
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.faq-item p {
  color: #4b5563;
  margin-bottom: 0.75rem;
}

.faq-item p:last-child {
  margin-bottom: 0;
}

a:not(.floating-home-button):not(.floating-top-button) {
  color: #2563eb;
  text-decoration: none;
}

a:not(.floating-home-button):not(.floating-top-button):hover {
  text-decoration: underline;
}

.cta-box {
  background: #eff6ff;
  border: 2px solid #3b82f6;
  border-radius: 8px;
  padding: 2rem;
  margin: 3rem 0;
  text-align: center;
}

.cta-box h3 {
  margin-top: 0;
  color: #1f2937;
  margin-bottom: 1rem;
}

.cta-box p {
  color: #374151;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  background: #2563eb;
  color: white !important;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.2s;
  margin: 0.5rem;
}

.btn:hover {
  background: #1d4ed8;
  color: white !important;
  text-decoration: none !important;
}

footer {
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  padding: 2rem;
  text-align: center;
  margin-top: 4rem;
}

footer p {
  color: #6b7280;
  margin: 0.25rem 0;
}

.contact-links {
  margin: 1.5rem 0;
}

.contact-links a {
  margin: 0 1rem;
}

/* Floating navigation buttons */
.floating-home-button {
  position: fixed;
  top: 20px;
  left: 20px;
  background-color: #0066cc;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
}
.floating-home-button:hover {
  background-color: #003d7a;
  color: white;
  box-shadow: 0 6px 16px rgba(0, 102, 204, 0.4);
  transform: translateY(-2px);
}
.floating-home-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}
.floating-home-button svg {
  fill: white;
}
.floating-top-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #0066cc;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.floating-top-button:hover {
  background-color: #003d7a;
  color: white;
  box-shadow: 0 6px 16px rgba(0, 102, 204, 0.4);
  transform: translateY(-2px);
}
.floating-top-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}
.floating-top-button svg {
  fill: white;
}
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }
  header p {
    font-size: 1rem;
  }
  .floating-home-button {
    top: 15px;
    left: 15px;
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  .floating-top-button {
    bottom: 15px;
    left: 15px;
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}
