* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: #eef2f7;
  color: #111827;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.68;
}
header {
  background: #07111f;
  border-bottom: 6px solid #d39a21;
  padding: 18px 24px;
}
.header-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  height: 58px;
  min-width: 178px;
  background: #d39a21;
  border-left: 8px solid #fff;
}
.logo img {
  height: 58px;
}
.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.button {
  border: 2px solid #d39a21;
  background: #d39a21;
  color: #07111f;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.button:first-child {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.section {
  max-width: 1220px;
  margin: 0 auto 30px auto;
  padding: 34px 32px;
  background: #fff;
  border-top: 5px solid #07111f;
}
.section:nth-of-type(2n) {
  background: #f9f5ec;
  border-top: 0;
  border-left: 8px solid #d39a21;
}
.section:nth-of-type(3n) {
  background: #fff;
  border-top: 5px solid #d39a21;
  border-left: 0;
}
.hero-section {
  margin-top: 30px;
  border-left: 8px solid #07111f;
  border-top: 0;
  background: #fff;
}
h1 {
  margin: 0 0 22px 0;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #07111f;
  text-transform: uppercase;
}
h2 {
  margin: 0 0 18px 0;
  font-size: 30px;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #07111f;
}
h3 {
  margin: 24px 0 12px 0;
  font-size: 22px;
  line-height: 1.28;
  color: #07111f;
}
h4 {
  margin: 0 0 10px 0;
  font-size: 18px;
  text-transform: uppercase;
  color: #07111f;
}
p {
  margin: 0 0 18px 0;
}
ul,
ol {
  margin: 0 0 18px 24px;
  padding: 0;
}
li {
  margin: 0 0 8px 0;
}
strong {
  font-weight: 800;
  color: #07111f;
}
.author-block {
  margin: 20px 0 24px 0;
  padding: 20px;
  background: #07111f;
  color: #fff;
  border-left: 8px solid #d39a21;
}
.author-block p {
  margin: 0 0 8px 0;
}
.author-block strong {
  color: #fff;
}
.table-wrap {
  overflow-x: auto;
  margin: 24px 0 45px 0;
  border: 3px solid #07111f;
  background: #fff;
}
.content-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin: 0;
}
.content-table tr {
  border-bottom: 1px solid #c6ccd6;
}
.content-table tr:first-child {
  background: #07111f;
  color: #fff;
  font-weight: 900;
}
.content-table tr:first-child td {
  color: #fff;
}
.content-table td {
  padding: 14px;
  vertical-align: top;
  border-right: 1px solid #c6ccd6;
}
.content-table td:last-child {
  border-right: 0;
}
.content-table tr:nth-child(even):not(:first-child) {
  background: #f8fafc;
}
.lnk-cta {
  display: inline-block;
  background: #07111f;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 11px 15px;
  border: 2px solid #07111f;
}
.lnk-cta:hover {
  background: #d39a21;
  color: #07111f;
  border-color: #d39a21;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 26px 0 42px 0;
  border: 3px solid #07111f;
  background: #fff;
}
.choice-grid .choice-card {
  border-right: 1px solid #c6ccd6;
  border-bottom: 1px solid #c6ccd6;
  padding: 20px;
  background: #fff;
}
.choice-grid .choice-card:nth-child(3n) {
  border-right: 0;
}
.choice-card span {
  display: inline-block;
  background: #07111f;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 8px;
  margin-bottom: 12px;
}
.review-card {
  margin: 28px 0;
  padding: 28px;
  background: #fff;
  border: 3px solid #07111f;
}
.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 2px solid #07111f;
  padding-bottom: 14px;
  margin-bottom: 18px;
}
.review-head h3 {
  margin: 0;
  font-size: 24px;
  text-transform: uppercase;
}
.score {
  display: inline-block;
  background: #ecfdf3;
  color: #067647;
  border: 2px solid #067647;
  padding: 7px 12px;
  font-weight: 900;
  white-space: nowrap;
}
.review-card p {
  font-size: 15px;
  color: #334155;
}
.review-card p strong {
  color: #07111f;
}
.section
  > div:not(.author-block):not(.table-wrap):not(.choice-grid):not(
    .review-card
  ) {
  border-left: 4px solid #07111f;
  padding-left: 20px;
  margin: 24px 0 40px 0;
}
footer {
  background: #07111f;
  color: #fff;
  margin-top: 42px;
  padding: 34px 24px;
  border-top: 6px solid #d39a21;
}
.footer-inner {
  max-width: 1220px;
  margin: 0 auto 18px auto;
}
.footer-brand p {
  margin: 0 0 8px 0;
}
.footer-brand strong {
  color: #fff;
}
@media (max-width: 780px) {
  body {
    font-size: 16px;
  }
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-actions {
    width: 100%;
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
  .section {
    padding: 26px 18px;
  }
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 25px;
  }
  .choice-grid {
    grid-template-columns: 1fr;
  }
  .choice-grid .choice-card {
    border-right: 0;
  }
  .review-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .content-table td {
    display: block;
    border-right: 0;
  }
  .table-wrap {
    border-width: 2px;
  }
}

/* Review cards - upgraded */
.review-card {
  margin: 34px 0;
  padding: 0;
  background: #ffffff;
  border: 3px solid #07111f;
}
.review-card-top {
  padding: 28px 28px 22px 28px;
  background: linear-gradient(135deg, #f8fbf4 0%, #edf7ef 100%);
  border-bottom: 3px solid #07111f;
}
.review-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
}
.review-card-title h3 {
  margin: 0 0 10px 0;
  font-size: 36px;
  line-height: 1.1;
  color: #07111f;
  text-transform: none;
}
.review-tag {
  display: inline-block;
  padding: 8px 12px;
  border: 2px solid #067647;
  background: #ecfdf3;
  color: #067647;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.review-score {
  min-width: 180px;
  padding: 16px 18px;
  border: 2px solid #067647;
  background: #ecfdf3;
  text-align: center;
}
.review-score small {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  color: #067647;
  letter-spacing: 0.04em;
}
.review-score strong {
  display: block;
  font-size: 32px;
  line-height: 1;
  color: #067647;
}
.review-card-body {
  padding: 28px;
}
.review-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.review-spec-item {
  padding: 16px 18px;
  border: 2px solid #d7dde7;
  background: #f8fafc;
}
.review-spec-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.3;
  color: #07111f;
}
.review-spec-item span {
  display: block;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}
.review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}
.review-pros,
.review-cons {
  padding: 22px;
  border: 2px solid #d7dde7;
  background: #ffffff;
}
.review-pros {
  border-left: 6px solid #067647;
}
.review-cons {
  border-left: 6px solid #9a3412;
}
.review-pros h4,
.review-cons h4 {
  margin: 0 0 14px 0;
  font-size: 21px;
  line-height: 1.2;
  color: #07111f;
}
.review-pros ul,
.review-cons ul {
  margin: 0;
  padding-left: 20px;
}
.review-pros li,
.review-cons li {
  margin: 0 0 10px 0;
  color: #334155;
  line-height: 1.6;
}
.review-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding-top: 22px;
  border-top: 2px solid #d7dde7;
}
.review-bottom .lnk-cta {
  white-space: nowrap;
  padding: 14px 20px;
}
@media (max-width: 900px) {
  .review-card-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .review-bottom {
    flex-direction: column;
    align-items: center;
  }
  .review-spec-grid,
  .review-pros-cons {
    grid-template-columns: 1fr;
  }
  .review-score {
    min-width: 100%;
  }
  .review-card-title h3 {
    font-size: 30px;
  }
  .review-bottom .lnk-cta {
    white-space: normal;
  }
}

/* FAQ and E-E-A-T footer */
.faq-container {
  border-top: 3px solid #07111f;
  margin-top: 24px;
}
.faq-item {
  position: relative;
  border-bottom: 1px solid #c6ccd6;
  padding: 20px 56px 20px 0;
  background: #fff;
}
.faq-item:nth-child(even) {
  background: #f8fafc;
}
.toggle {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.faq-question {
  margin: 0;
  font-size: 21px;
  line-height: 1.3;
  color: #07111f;
}
.icon {
  position: absolute;
  right: 14px;
  top: 24px;
  width: 22px;
  height: 22px;
  border-left: 3px solid #07111f;
  border-bottom: 3px solid #07111f;
  transform: rotate(-45deg);
}
.faq-answer {
  display: none;
  margin: 14px 0 0 0;
  color: #334155;
  font-size: 16px;
  line-height: 1.65;
}
.toggle:checked ~ .faq-answer {
  display: block;
}
.eaat-footer {
  background: #07111f;
  color: #fff;
  margin-top: 42px;
  padding: 0;
  border-top: 6px solid #d39a21;
}
.eaat-footer-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 34px 24px;
}
.eaat-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 26px;
}
.eaat-footer-card {
  border: 2px solid #334155;
  padding: 20px;
  background: #0b1729;
}
.eaat-footer-card h3 {
  margin: 0 0 12px 0;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.eaat-footer-card p {
  margin: 0 0 10px 0;
  color: #dbe4ef;
  font-size: 14px;
  line-height: 1.6;
}
.eaat-footer-card strong {
  color: #fff;
}
.eaat-disclosure {
  border-top: 1px solid #334155;
  padding-top: 18px;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.6;
}
.eaat-disclosure p {
  margin: 0 0 8px 0;
}
.eaat-disclosure,
.eaat-disclosure p,
.eaat-disclosure strong {
  color: #fff;
}
.eaat-footer a,
.eaat-footer a:visited,
.eaat-footer a:hover {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 900px) {
  .eaat-footer-grid {
    grid-template-columns: 1fr;
  }
  .faq-item {
    padding-right: 44px;
  }
}

/* Non-structural visual titles */
.choice-title {
  display: block;
  margin: 0 0 10px 0;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
  text-transform: uppercase;
  color: #07111f;
}
.subtopic-title {
  display: block;
  margin: 24px 0 12px 0;
  font-size: 22px;
  line-height: 1.28;
  font-weight: 900;
  color: #07111f;
}
.note-title {
  display: block;
  margin: 0 0 12px 0;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 900;
  color: #07111f;
  text-transform: uppercase;
}
.review-list-title {
  display: block;
  margin: 0 0 14px 0;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 900;
  color: #07111f;
  text-transform: uppercase;
}
.eaat-footer-title {
  display: block;
  margin: 0 0 12px 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.eaat-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  border-top: 1px solid #334155;
  padding-top: 18px;
  margin-top: 8px;
}
.eaat-footer-links a,
.eaat-footer-links a:visited,
.eaat-footer-links a:hover,
.eaat-footer-links a:active {
  color: #ffffff;
  text-decoration: none;
}
.eaat-footer-links a:hover {
  text-decoration: underline;
}

/* Center only buttons inside review cards */
.review-card .review-bottom {
  justify-content: center;
  text-align: center;
}
.review-card .review-bottom .lnk-cta {
  display: inline-block;
}

/* Final UI fixes */
.choice-card .choice-title {
  display: block;
  background: transparent;
  color: #07111f;
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
.content-table .lnk-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 150px;
  white-space: nowrap;
  line-height: 1.25;
}
.review-card .review-bottom .lnk-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: normal;
  line-height: 1.35;
}
