/* ------------------------------
   Global Styles
------------------------------ */
body {
  font-family: "Inter", Arial, sans-serif;
  background: #f7f9fc;
  margin: 0;
  padding: 0;
  color: #1b1b1b;
  line-height: 1.6;
}

h1, h2, h3 {
  color: #0d1b2a;
  margin-bottom: 10px;
}

section {
  padding: 30px 20px;
  max-width: 1200px;
  margin: auto;
}

/* ------------------------------
   Intro Section
------------------------------ */
.test-intro {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.test-intro p {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

/* ------------------------------
   Operative Section
------------------------------ */
.test-operatives, 
.test-special,
.test-extra-info,
.test-search-box,
.test-cta-box {
  background: #ffffff;
  padding: 25px;
  margin: 20px 0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}

.test-operatives ul,
.test-special ul,
.test-extra-info ul {
  margin-top: 10px;
  padding-left: 18px;
}

.test-operatives ul li,
.test-special ul li,
.test-extra-info ul li {
  margin-bottom: 6px;
}

/* ------------------------------
   CTA Section
------------------------------ */
.test-cta-box {
  text-align: center;
  border-left: 5px solid #0077cc;
}

.test-cta-box .btn-primary {
  display: inline-block;
  background: #0077cc;
  padding: 12px 20px;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 12px;
  transition: 0.3s;
}

.test-cta-box .btn-primary:hover {
  background: #005fa3;
}

/* ------------------------------
   Search Box
------------------------------ */
.search-wrapper {
  position: relative;
  margin: 15px 0 20px;
}

.search-wrapper input {
  width: 100%;
  padding: 12px 40px;
  font-size: 1rem;
  border: 2px solid #d0d7e2;
  border-radius: 8px;
}

.search-wrapper i {
  position: absolute;
  left: 12px;
  top: 50%;
  color: #777;
  transform: translateY(-50%);
}

/* ------------------------------
   Table
------------------------------ */
.test-search-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.test-search-table th {
  background: #0d1b2a;
  color: #fff;
  padding: 12px;
  font-size: 1rem;
  text-align: left;
}

.test-search-table td {
  padding: 12px;
  border-bottom: 1px solid #e3e6eb;
}

.test-search-table tr:hover {
  background: #f1f4f9;
}

/* ------------------------------
   FAQ Section
------------------------------ */
.test-faq-section {
  margin-top: 30px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-size: 1rem;
  background: #eef3f9;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #e0e7f1;
}

.faq-answer {
  display: none;
  padding: 15px 20px;
  background: #fff;
  font-size: 0.95rem;
}

/* ------------------------------
   Mobile Responsive
------------------------------ */
@media (max-width: 768px) {
  h1 {
    font-size: 1.6rem;
  }
  
  table {
    font-size: 0.9rem;
  }
  
  .faq-question {
    font-size: 0.95rem;
  }
}
