/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Hero section */
.hero {
  text-align: center;
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.hero p {
  font-size: 1.125rem;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
}

/* Section headings */
h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

/* Contact section */
.contact-section {
  margin-bottom: 3rem;
}

/* Removed contact-grid and simplified contact-info to be centered */
.contact-info {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  max-width: 400px;
  margin: 0 auto;
}

.contact-item {
  margin-bottom: 1rem;
}

.contact-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #1a1a1a;
}

.contact-item a {
  color: #007aff;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-item address {
  font-style: normal;
  line-height: 1.4;
}

/* Removed all form-related styles: .contact-form-container, .form-group, .submit-btn, .form-status */

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

.faq-list {
  space-y: 1rem;
}

.faq-item {
  border: 1px solid #e1e5e9;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.faq-item summary {
  padding: 1rem;
  cursor: pointer;
  font-weight: 500;
  background: #f8f9fa;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.faq-item summary:hover {
  background: #e9ecef;
}

.faq-item[open] summary {
  border-bottom: 1px solid #e1e5e9;
  border-radius: 8px 8px 0 0;
}

.faq-item p {
  padding: 1rem;
  color: #666;
}

/* Quick links */
.quick-links {
  margin-bottom: 3rem;
}

.links-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.links-nav a {
  color: #007aff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid #007aff;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.links-nav a:hover {
  background: #007aff;
  color: white;
}

.back-link {
  font-weight: 500;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid #e1e5e9;
  color: #666;
  font-size: 0.875rem;
}

/* Removed toast notification styles since form is removed */

/* Mobile responsiveness */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  /* Removed contact-grid mobile styles since grid is removed */

  .links-nav {
    flex-direction: column;
  }

  .links-nav a {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 1rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

/* Removed print styles since there's no form to hide */
