:root {
  --primary: #003A66;      /* Change to your theme color */
  --secondary: #111827;
  --bg: #f9fafb;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: var(--bg);
}

.faq-section {
  padding: 80px 20px;
}

.container {
  max-width: 900px;
  margin: auto;
}

.faq-title {
  font-size: 36px;
  text-align: center;
  color: #003A66;
  margin-bottom: 15px;
}

.faq-intro {
  text-align: center;
  font-size: 16px;
  margin-bottom: 50px;
  color: #555;
}

.faq-box {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.faq-box:hover {
  transform: translateY(-3px);
}

.faq-question {
  padding: 22px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: var(--secondary);
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 22px;
  font-size: 26px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 20px 0;
}

/* Responsive */
@media (max-width: 600px) {
  .faq-title {
    font-size: 28px;
  }
  .faq-question {
    font-size: 16px;
  }
}

/* SEO Internal Links Section */

.seo-links-section {
  padding: 80px 20px;
  background: #f1f5f9;
}

.seo-links-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 12px;
  color: var(--secondary);
}

.seo-links-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: #555;
}

.seo-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.seo-link-box {
  background: var(--white);
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seo-link-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.seo-link-box h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--secondary);
}

.seo-link-box p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.seo-link-btn {
  display: inline-block;
  padding: 12px 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.seo-link-btn:hover {
  background: #fff;
  transform: scale(1.05);
}

.seo-link-box.highlight {
  border: 2px solid var(--primary);
}