*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: #111827;
  background-color: #f3f4f6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */

.site-header {
  background-color: #111827;
  color: #f9fafb;
  padding: 0.75rem 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.nav a {
  margin-left: 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e5e7eb;
}

.nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Hero */

.hero-minimal {
  padding: 2.5rem 0 1.5rem;
}

.hero-minimal h2 {
  margin: 0 0 0.5rem;
  text-align: center; /* Centers the heading */
}

/* Intro Enhancements */

.section-divider {
  border: none;
  height: 2px;
  background-color: #d1d5db;
  margin: 0.75rem auto 1rem;
  width: 60%; /* Keeps the divider centered and clean */
}

.section-intro {
  display: block;
  font-size: 1.05rem;
  color: #4b5563;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.6;
}


/* Cards */

.section {
  padding: 2.5rem 0;
}

/* Center all section titles */
.section h2 {
  text-align: center;
}

.section h3 {
  text-align: center;
}


.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}


.card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 1px solid #e5e7eb;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  border-color: #2563eb;
}

/* Footer */

.site-footer {
  background-color: #111827;
  color: #9ca3af;
  padding: 1.5rem 0;
  font-size: 0.85rem;
}

.footer-content {
  text-align: center;
}

/* Contact Form Container */
.contact-form {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  margin-top: 2rem;
}

/* Form Rows */
.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

/* Labels */
.form-row label {
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #374151;
}

/* Inputs & Selects */
.form-row input,
.form-row select,
.form-row textarea {
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  background-color: #f9fafb;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Focus State */
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
  outline: none;
  background-color: #ffffff;
}

/* Submit Button */
.btn-primary {
  display: block;
  width: 100%;
  padding: 0.9rem;
  background-color: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background-color: #1e40af;
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.contact-form {
  max-width: 650px;
  margin: 0 auto;
}

/* FAQ Styles */

.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background-color: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #1f2937;
  font-size: 1.15rem;
}

.faq-item p {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
}

/* Contact Info Box */
.contact-info-box {
  max-width: 650px;
  margin: 2rem auto 0;
  background-color: #ffffff;
  padding: 1.75rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  line-height: 1.7;
  color: #374151;
}

.contact-info-box h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  color: #1f2937;
  text-align: center;
}

.contact-info-box p {
  margin: 0.75rem 0;
  text-align: center;
}

.contact-info-box a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 140px;
  width: auto;
}

.section-intro + h3 {
  margin-top: 2rem;
}

.section-intro {
  max-width: 800px;
  margin-bottom: 1rem;
  line-height: 1.7;
}
