/* ==========================================================================
   Epson Download Center - Theme Stylesheet
   Faithful clone of Epson Download Center styling & MUI components
   ========================================================================== */

:root {
  --primary-blue: #1976d2;
  --primary-blue-dark: #1565c0;
  --primary-blue-light: #42a5f5;
  --epson-navy: #003399;
  --epson-header-banner: rgba(0, 51, 153, 0.75);
  --text-primary: #1f1f1f;
  --text-secondary: #4a4a4a;
  --text-muted: #656565;
  --border-light: rgba(0, 0, 0, 0.12);
  --border-divider: rgba(0, 0, 0, 0.08);
  --paper-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2),
                  0px 1px 1px 0px rgba(0, 0, 0, 0.14),
                  0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --dialog-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2),
                   0px 24px 38px 3px rgba(0, 0, 0, 0.14),
                   0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}

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

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  margin: 0;
  padding: 0;
  font-family: Meiryo, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  color: var(--text-primary);
  background-color: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Base Typography */
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Header Section
   ========================================================================== */
.header_bar__UNzsd {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background-color: #fff !important;
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.15),
              0px 4px 5px 0px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  padding: 0.4rem 2rem 0;
  gap: 0.25rem;
}

.header_barTop__doRdX {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
}

.header_left__yuID7 {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.header_logo___Dnsk {
  cursor: pointer;
  display: block;
  height: 38px;
  width: auto;
  object-fit: contain;
}

.header_titles__SH4cr {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.header_serviceName__oLNHp {
  font-weight: 700;
  color: #1f1f1f;
  font-size: 1.05rem;
  white-space: nowrap;
}

.header_divider__ypyXR {
  width: 1px;
  height: 1.5rem;
  background-color: rgba(0, 0, 0, 0.25);
}

.header_productName__bpjau {
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 20rem;
}

.header_rightContainer__4a1_K {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header_languageButton__kgfWJ {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--primary-blue);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background-color 150ms ease;
}
.header_languageButton__kgfWJ:hover {
  background-color: rgba(25, 118, 210, 0.08);
}
.header_languageButton__kgfWJ svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.header_tabsDivider__VWDOr {
  border: none;
  border-top: 1px solid var(--border-divider);
  margin: 0;
  width: 100%;
}

.header_tabs__wwG_x {
  display: flex;
  align-items: center;
  min-height: 42px;
  overflow-x: auto;
  max-width: 100%;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.header_tabs__wwG_x::-webkit-scrollbar {
  display: none;
}

.header_tabsList {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header_tab__1ajcd {
  background: transparent;
  border: none;
  color: var(--primary-blue);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 12px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
  transition: color 200ms ease;
}
.header_tab__1ajcd:hover {
  color: var(--primary-blue-dark);
}
.header_tab__1ajcd.active {
  color: var(--primary-blue);
}
.header_tab__1ajcd.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--primary-blue);
  border-radius: 2px 2px 0 0;
}

/* ==========================================================================
   Main Content Layout
   ========================================================================== */
.layout_mainWithTabs__xb9D2 {
  margin-top: 130px;
  flex: 1 0 auto;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 2rem 3rem;
}

/* Breadcrumbs */
.breadcrumbs_container__yMXM_ {
  margin-bottom: 2rem;
}
.breadcrumbs_ol {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
}
.breadcrumbs_li {
  display: inline-flex;
  align-items: center;
}
.breadcrumbs_link {
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.breadcrumbs_link:hover {
  text-decoration: underline;
}
.breadcrumbs_link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.breadcrumbs_separator {
  margin: 0 0.5rem;
  color: rgba(0, 0, 0, 0.4);
  display: inline-flex;
  align-items: center;
}
.breadcrumbs_separator svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.breadcrumbs_current {
  color: rgba(0, 0, 0, 0.87);
  font-weight: 500;
}

/* Upper Area: Titles & Select Dropdowns */
.softwares_upperArea__J2vz_ {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 2rem;
}

.softwares_title__K_XaA {
  flex: 1;
}

.softwares_mainTitle {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.softwares_subTitle {
  font-size: 1.6rem;
  font-weight: 400;
  color: #2a2a2a;
  line-height: 1.3;
}

.softwares_controlsArea {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pulldown_group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pulldown_label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #222;
}

.pulldown_wrapper {
  position: relative;
  width: 100%;
}

.pulldown_select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.23);
  border-radius: 4px;
  padding: 12px 36px 12px 14px;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-family: inherit;
  cursor: pointer;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  outline: none;
}
.pulldown_select:hover {
  border-color: rgba(0, 0, 0, 0.87);
}
.pulldown_select:focus {
  border-color: var(--primary-blue);
  border-width: 2px;
  padding: 11px 35px 11px 13px;
}

.pulldown_arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 22px;
  height: 22px;
  fill: rgba(0, 0, 0, 0.54);
}

/* Help Modal Link */
.softwares_HelpModalLinkWrap__b_Ktz {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.25rem;
}

.softwares_HelpModalLinkButton__1V_19 {
  background: transparent;
  border: none;
  color: var(--primary-blue);
  cursor: pointer;
  padding: 0;
  font-size: 0.95rem;
  text-decoration: none;
}
.softwares_HelpModalLinkButton__1V_19:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Software Cards & Tables
   ========================================================================== */
.softwares_tableContainer__8PoE7 {
  margin-bottom: 2.5rem;
  scroll-margin-top: 140px;
}

.epson_card {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: var(--paper-shadow);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.epson_card_header {
  background-color: var(--epson-header-banner);
  color: #fff;
  padding: 0.65rem 1.25rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.epson_table {
  width: 100%;
  border-collapse: collapse;
}

.epson_table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.epson_table tr:last-child {
  border-bottom: none;
}

.epson_table td {
  padding: 1.5rem 1.25rem;
  vertical-align: middle;
}

.col_title {
  width: 45%;
}

.module_title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.col_info {
  width: 25%;
  text-align: right;
}

.info_box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  font-size: 0.875rem;
  color: #333;
}

.info_version {
  font-weight: 600;
}

.info_description_btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--primary-blue);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.info_description_btn:hover {
  text-decoration: underline;
}
.info_description_btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.col_action {
  width: 30%;
  text-align: right;
}

/* Proceed to Download Button */
.epson_btn_download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--primary-blue);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
  padding: 0 1.25rem;
  height: 42px;
  min-width: 215px;
  border-radius: 4px;
  border: none;
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
              0px 2px 2px 0px rgba(0, 0, 0, 0.14),
              0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  text-decoration: none !important;
  transition: background-color 200ms ease, box-shadow 200ms ease;
}
.epson_btn_download:hover {
  background-color: var(--primary-blue-dark);
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2),
              0px 4px 5px 0px rgba(0, 0, 0, 0.14),
              0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.epson_btn_download svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ==========================================================================
   Modals & Dialogs
   ========================================================================== */
.epson_modal_overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1300;
  padding: 1rem;
  opacity: 0;
  transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1);
}
.epson_modal_overlay.open {
  display: flex;
  opacity: 1;
}

.epson_dialog {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: var(--dialog-shadow);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(-20px);
  transition: transform 225ms cubic-bezier(0.4, 0, 0.2, 1);
}
.epson_modal_overlay.open .epson_dialog {
  transform: translateY(0);
}

.epson_dialog_title {
  padding: 16px 24px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  border-bottom: 1px solid var(--border-divider);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.epson_dialog_content {
  padding: 20px 24px;
  overflow-y: auto;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

.epson_dialog_content p {
  margin-bottom: 1rem;
}

.revision_history_title {
  font-weight: 700;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem !important;
}

.revision_history_row {
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem 0;
  border-top: 1px solid var(--border-divider);
  font-size: 0.9rem;
}

.epson_dialog_actions {
  padding: 12px 24px;
  border-top: 1px solid var(--border-divider);
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.epson_btn_text {
  background: transparent;
  border: none;
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}
.epson_btn_text:hover {
  background-color: rgba(25, 118, 210, 0.08);
}

/* Download Agreement Box */
.license_agreement_box {
  background-color: #f7f9fa;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  padding: 14px;
  max-height: 180px;
  overflow-y: auto;
  font-size: 0.85rem;
  margin: 1rem 0;
  line-height: 1.5;
}

.license_checkbox_label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.license_checkbox_label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.download_info_grid {
  display: grid;
  grid-template-columns: 140px 1fr;
  row-gap: 0.5rem;
  column-gap: 1rem;
  font-size: 0.9rem;
  background: #fbfbfb;
  padding: 12px 16px;
  border-radius: 4px;
  border: 1px solid var(--border-divider);
  margin-bottom: 1.25rem;
}
.download_info_label {
  font-weight: 600;
  color: #555;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer_root {
  margin-top: auto;
  background-color: #fff;
  border-top: 1px solid var(--border-divider);
  padding: 1.5rem 1rem 1rem;
  text-align: center;
}

.footer_links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.footer_link {
  color: var(--primary-blue);
  font-size: 0.875rem;
  text-decoration: none;
}
.footer_link:hover {
  text-decoration: underline;
}

.footer_divider {
  width: 1px;
  height: 14px;
  background-color: rgba(0, 0, 0, 0.2);
}

.footer_copyright {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 900px) {
  .softwares_upperArea__J2vz_ {
    flex-direction: column;
    gap: 1.5rem;
  }
  .softwares_controlsArea {
    flex: 1 1 100%;
    width: 100%;
  }
  .header_productName__bpjau {
    display: none;
  }
}

@media (max-width: 768px) {
  .header_bar__UNzsd {
    padding: 0.4rem 1rem 0;
  }
  .layout_mainWithTabs__xb9D2 {
    margin-top: 125px;
    padding: 1rem 1rem 2rem;
  }
  .softwares_mainTitle {
    font-size: 1.6rem;
  }
  .softwares_subTitle {
    font-size: 1.2rem;
  }
  .softwares_HelpModalLinkWrap__b_Ktz {
    justify-content: flex-start !important;
  }
  .header_barTop__doRdX {
    gap: 0.5rem;
  }
  .header_left__yuID7 {
    gap: 0.5rem;
  }
  .header_logo___Dnsk {
    height: 30px;
  }
  .header_serviceName__oLNHp {
    font-size: 0.9rem;
  }
  
  /* Mobile table card view */
  .epson_table, .epson_table tbody, .epson_table tr, .epson_table td {
    display: block;
    width: 100%;
  }
  .epson_table td {
    padding: 0.75rem 1rem;
    text-align: left !important;
  }
  .col_info {
    text-align: left !important;
  }
  .info_box {
    align-items: flex-start;
  }
  .epson_btn_download {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .header_serviceName__oLNHp {
    font-size: 0.8rem;
  }
  .header_logo___Dnsk {
    height: 26px;
  }
  .header_languageButton__kgfWJ .header_langText {
    display: none;
  }
  .header_bar__UNzsd {
    padding: 0.3rem 0.5rem 0;
  }
  .header_barTop__doRdX {
    min-height: 40px;
  }
}

/* ==========================================================================
   SEO Content & Article Styling (Epson Theme Aligned)
   ========================================================================== */
.seo_content_wrapper {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-divider);
}

.seo_section {
  margin-bottom: 3.5rem;
}

.seo_h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(25, 118, 210, 0.2);
}
.seo_h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--primary-blue);
}

.seo_h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.seo_text {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.25rem;
}

.seo_grid_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.seo_grid_3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.seo_feature_card {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.seo_feature_card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.seo_card_icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: rgba(25, 118, 210, 0.1);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.seo_card_icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.seo_card_title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.seo_steps_container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.seo_step_card {
  display: flex;
  gap: 1.25rem;
  background: #fbfbfb;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
}

.seo_step_badge {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seo_step_body {
  flex: 1;
}

.seo_step_title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.35rem;
}

/* SEO Tables */
.seo_table_responsive {
  width: 100%;
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.seo_data_table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.seo_data_table th {
  background-color: #f4f6f8;
  color: #222;
  font-weight: 700;
  padding: 12px 16px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  font-size: 0.95rem;
}
.seo_data_table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.95rem;
  color: #333;
}
.seo_data_table tr:last-child td {
  border-bottom: none;
}
.seo_data_table tr:hover td {
  background-color: #fafafa;
}

/* FAQ Accordion Styling */
.seo_faq_list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.seo_faq_item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  background-color: #fff;
  overflow: hidden;
  transition: border-color 200ms ease;
}
.seo_faq_item.active {
  border-color: rgba(25, 118, 210, 0.4);
}

.seo_faq_q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.25rem;
  background: transparent;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  gap: 1rem;
}
.seo_faq_q:hover {
  color: var(--primary-blue);
  background-color: #fbfbfb;
}

.seo_faq_icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: rgba(0, 0, 0, 0.54);
  transition: transform 250ms ease;
}
.seo_faq_item.active .seo_faq_icon {
  transform: rotate(180deg);
  fill: var(--primary-blue);
}

.seo_faq_a {
  display: none;
  padding: 0 1.25rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #444;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding-top: 1rem;
}
.seo_faq_item.active .seo_faq_a {
  display: block;
}

/* Troubleshooting Cards */
.seo_trouble_card {
  border-left: 4px solid var(--primary-blue);
  background-color: #fbfbfb;
  border-radius: 0 6px 6px 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.seo_trouble_title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #c62828;
  margin-bottom: 0.5rem;
}

.seo_trouble_solution {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 900px) {
  .seo_grid_3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .seo_grid_2, .seo_grid_3 {
    grid-template-columns: 1fr;
  }
  .seo_step_card {
    flex-direction: column;
    gap: 0.75rem;
  }
  .seo_h2 {
    font-size: 1.45rem;
  }
}

/* ==========================================================================
   Secondary Content Pages (About, Contact, Legal, etc.)
   ========================================================================== */
.layout_main__single {
  margin-top: 80px;
  flex: 1 0 auto;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 1.5rem 3rem;
}
.page_card {
  background: #fff;
  border: 1px solid var(--border-divider);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.page_card_header {
  background: var(--primary-blue);
  color: #fff;
  padding: 1.5rem 2rem;
}
.page_card_header h1 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.page_card_body {
  padding: 2.25rem 2.25rem 3rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-main);
}
.page_card_body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #edf0f3;
}
.page_card_body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #222;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.page_card_body p {
  margin-bottom: 1.15rem;
}
.page_card_body a {
  color: var(--primary-blue);
  text-decoration: none;
}
.page_card_body a:hover {
  text-decoration: underline;
}

/* Form styling for Contact Us */
.epson_form_group {
  margin-bottom: 1.25rem;
}
.epson_form_label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 0.9rem;
}
.epson_form_control {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.epson_form_control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 51, 153, 0.15);
}
.epson_btn_primary {
  background: var(--primary-blue);
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.epson_btn_primary:hover {
  background: var(--primary-hover);
}

/* ==========================================================================
   Section Styling Accents & Trust Badges
   ========================================================================== */
.seo_section_badge {
  display: inline-block;
  background: #eef3fb;
  color: #003399;
  border-left: 3px solid #003399;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 0.5rem;
}

.trust_indicator_bar {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust_badge_item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #334155;
  font-weight: 600;
}

.trust_badge_icon {
  width: 20px;
  height: 20px;
  fill: #16a34a;
  flex-shrink: 0;
}

.hash_code {
  font-family: monospace;
  background: #edeef2;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.75rem;
  color: #475569;
}

/* Section Card Left Accent */
.seo_section {
  position: relative;
}
.seo_feature_card {
  border-left: 3px solid #003399 !important;
}
.seo_step_num {
  box-shadow: 0 2px 6px rgba(0, 51, 153, 0.25);
}

/* Responsive Blog Cards on Homepage */
.home_blog_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.home_blog_card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.home_blog_card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.home_blog_img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.home_blog_body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.home_blog_title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.home_blog_title a {
  color: inherit;
  text-decoration: none;
}
.home_blog_title a:hover {
  color: #003399;
}
.home_blog_link {
  color: #003399;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
}

