/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 17px; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
body {
  margin: 0;
  padding: 0;
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7em;
  color: #666;
  background: #fff;
  overflow-x: hidden;
}
a { color: #73bd45; text-decoration: none; }
a:hover { color: #0862ad; }
p { margin: 0 0 1.7em; }
img { max-width: 100%; height: auto; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Semi Condensed', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
  line-height: 1.2em;
  padding-bottom: 0;
  margin: 0 0 0.5em;
}

/* ===== CONTAINER ===== */
.container { width: 80%; max-width: 1080px; margin: 0 auto; position: relative; }
@media (max-width: 980px) { .container { width: 90%; } }

/* ===== HEADER ===== */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.1);
  padding: 0 5%;
  height: 80px;
  line-height: 80px;
}
#main-header .container { display: flex; align-items: center; justify-content: space-between; height: 80px; max-width: 100%; width: 100%; padding: 0; }
#logo { display: inline-block; }
#logo img { max-height: 60px; vertical-align: middle; }

/* ===== NAVIGATION ===== */
#top-menu-nav { height: 80px; line-height: 80px; }
#top-menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 0; }
#top-menu > li { display: inline-block; position: relative; padding: 0 15px; }
#top-menu > li > a {
  display: block;
  color: #333;
  font-family: 'Barlow Semi Condensed', Helvetica, Arial, Lucida, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 80px;
  text-decoration: none;
  transition: color 0.3s;
}
#top-menu > li > a:hover { color: #0862ad; }
#top-menu > li.menu-item-has-children > a::after {
  content: "▾";
  margin-left: 5px;
  font-size: 12px;
}

/* Dropdown */
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 1000;
  min-width: 200px;
  list-style: none;
  margin: 0;
}
#top-menu > li:hover .sub-menu { display: block; }
.sub-menu li { padding: 0; }
.sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: #333;
  font-family: 'Barlow Semi Condensed', Helvetica, Arial, Lucida, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s;
}
.sub-menu li a:hover { background: #f4f4f4; color: #0862ad; }
#top-menu .cta-button a {
  color: #73bd45 !important;
}
#top-menu .cta-button a:hover {
  color: #0862ad !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 28px;
  color: #333;
  line-height: 80px;
  background: none;
  border: none;
  padding: 0;
}
@media (max-width: 980px) {
  .mobile-menu-toggle { display: block; }
  #top-menu-nav { display: none; }
  #top-menu-nav.open { display: block; position: absolute; top: 80px; left: 0; width: 100%; background: #fff; box-shadow: 0 5px 10px rgba(0,0,0,0.1); z-index: 9999; height: auto; line-height: normal; }
  #top-menu { flex-direction: column; padding: 10px 0; }
  #top-menu > li { display: block; padding: 0; }
  #top-menu > li > a { line-height: 50px; padding: 0 20px; }
  .sub-menu { position: static; box-shadow: none; padding: 0 0 0 20px; display: none; }
  #top-menu > li:hover .sub-menu { display: none; }
  #top-menu > li.open .sub-menu { display: block; }
}

/* ===== PAGE WRAPPER ===== */
#page-container { margin-top: 80px; padding-top: 0; }

/* ===== DIVI SECTION / ROW / COLUMN ===== */
.et_pb_section { padding: 50px 0; position: relative; }
.et_pb_section.et_pb_section_0 { padding: 0; }
.et_pb_row { width: 80%; max-width: 1080px; margin: 0 auto; position: relative; }
.et_pb_row:after { content: ""; display: table; clear: both; }
.et_pb_column { float: left; position: relative; min-height: 1px; }
.et_pb_column.et_pb_column_1_2 { width: 50%; }
.et_pb_column.et_pb_column_1_3 { width: 33.33%; }
.et_pb_column.et_pb_column_2_3 { width: 66.66%; }
.et_pb_column.et_pb_column_1_4 { width: 25%; }
.et_pb_column.et_pb_column_3_4 { width: 75%; }
.et_pb_column.et_pb_column_4_4 { width: 100%; }
.et_pb_row.et_pb_gutters3 .et_pb_column { margin-right: 5.5%; }
.et_pb_row.et_pb_gutters3 .et_pb_column:last-child { margin-right: 0; }
.et_pb_row.et_pb_gutters3 .et_pb_column_1_2 { width: 47.25%; }
.et_pb_row.et_pb_gutters3 .et_pb_column_1_3 { width: 29.66%; }
.et_pb_row.et_pb_gutters3 .et_pb_column_2_3 { width: 64.83%; }
.et_pb_row.et_pb_gutters3 .et_pb_column_1_4 { width: 20.875%; }
.et_pb_row.et_pb_gutters3 .et_pb_column_3_4 { width: 73.125%; }

@media (max-width: 980px) {
  .et_pb_row { width: 90%; }
  .et_pb_column { width: 100% !important; margin-right: 0 !important; margin-bottom: 30px; }
}

/* ===== HERO SECTION (Home) ===== */
.hero-section {
  background: #333;
  color: #fff;
  padding: 80px 0 !important;
  position: relative;
  overflow: hidden;
}
.hero-section .hero-content { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.hero-section .hero-text { flex: 1; min-width: 300px; padding: 20px; }
.hero-section .hero-text h1 {
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 48px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1em;
  margin: 0;
}
.hero-section .hero-text .hero-line {
  display: block;
}
.hero-section .hero-text .hero-line.highlight {
  color: #73bd45;
}
.hero-section .hero-images { flex: 0 0 auto; display: flex; gap: 0; align-items: flex-end; }
.hero-section .hero-images img { max-height: 300px; width: auto; }

/* ===== MODULE: TEXT ===== */
.et_pb_text { word-wrap: break-word; }
.et_pb_text h1, .et_pb_text h2, .et_pb_text h3, .et_pb_text h4, .et_pb_text h5, .et_pb_text h6 { color: #333; }
.et_pb_text h2 { font-size: 30px; }
.et_pb_text ul { list-style: disc; padding-left: 20px; line-height: 1.7em; }

/* ===== MODULE: BUTTON ===== */
.et_pb_button_module_wrapper { margin-top: 20px; }
.et_pb_button {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: #fff !important;
  border: 1px solid #fff;
  border-radius: 7px;
  font-family: 'Barlow Semi Condensed', Helvetica, Arial, Lucida, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.et_pb_button::after {
  content: "$";
  font-size: 16px;
  position: absolute;
  right: 30px;
  opacity: 0;
  transition: all 0.3s;
}
.et_pb_button:hover {
  background: rgba(255,255,255,0.1);
  padding-right: 50px;
}
.et_pb_button:hover::after {
  opacity: 1;
  right: 20px;
}
.et_pb_button.et_pb_button_color_accent {
  border-color: #0862ad;
  color: #0862ad !important;
}
.et_pb_button.et_pb_button_color_accent:hover {
  background: #0862ad;
  color: #fff !important;
}

/* ===== CONSOLE CARDS GRID (Home) ===== */
.console-grid { padding: 60px 0 !important; }
.console-grid .container { max-width: 900px; }
.console-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.console-card {
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  text-align: center;
  padding: 40px 20px 30px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  background: #333;
}
.console-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.console-card .card-image { margin-bottom: 20px; min-height: 150px; display: flex; align-items: center; justify-content: center; }
.console-card .card-image img { max-height: 150px; object-fit: contain; }
.console-card h3 { color: #fff; font-size: 22px; margin-bottom: 10px; }
.console-card p { color: rgba(255,255,255,0.8); font-size: 15px; line-height: 1.5em; }
.console-card .card-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 25px;
  border: 1px solid #fff;
  border-radius: 7px;
  color: #fff;
  font-family: 'Barlow Semi Condensed', Helvetica, Arial, Lucida, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s;
}
.console-card .card-btn:hover { background: rgba(255,255,255,0.2); color: #fff; }
.console-card .read-more-link {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 25px;
  color: #fff;
  font-family: 'Barlow Semi Condensed', Helvetica, Arial, Lucida, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s;
}
.console-card .read-more-link:hover { color: rgba(255,255,255,0.7); }

/* Console card variations */
.console-card.card-wii { background: linear-gradient(135deg, #0074b3 0%, #0862ad 100%); }
.console-card.card-vita { background: linear-gradient(135deg, #322be1 0%, #1a14a0 100%); }
.console-card.card-3ds { background: linear-gradient(135deg, #FF8A00 0%, #e67a00 100%); }
.console-card.card-psp { background: linear-gradient(135deg, #000d2d 0%, #001a4d 100%); }

/* ===== MODULE: DIVIDER ===== */
.et_pb_divider { position: relative; height: 0; margin: 30px 0; border-top: 1px solid rgba(0,0,0,0.1); }

/* ===== MODULE: BLURB ===== */
.et_pb_blurb { text-align: center; padding: 20px; }
.et_pb_blurb .et_pb_main_blurb_image { margin-bottom: 20px; }
.et_pb_blurb .et_pb_main_blurb_image img { border-radius: 50%; max-width: 80px; }
.et_pb_blurb h4 { font-size: 18px; }

/* ===== MODULE: SLIDER ===== */
.et_pb_slider { position: relative; overflow: hidden; }
.et_pb_slide { padding: 60px 40px; }

/* ===== MODULE: TOGGLE / ACCORDION (FAQ) ===== */
.et_pb_toggle {
  border: 1px solid #d9d9d9;
  margin-bottom: 10px;
  background: #f4f4f4;
  border-radius: 3px;
  overflow: hidden;
}
.et_pb_toggle.et_pb_toggle_open { background: #fff; }
.et_pb_toggle_title {
  display: block;
  padding: 15px 20px;
  font-family: 'Barlow Semi Condensed', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}
.et_pb_toggle_title:hover { color: #0862ad; }
.et_pb_toggle_title::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 700;
  color: #999;
  transition: all 0.3s;
}
.et_pb_toggle_open .et_pb_toggle_title::after {
  content: "−";
  color: #0862ad;
}
.et_pb_toggle_content {
  display: none;
  padding: 0 20px 20px;
  border-top: 1px solid #d9d9d9;
  color: #666;
  font-size: 15px;
  line-height: 1.7em;
}
.et_pb_toggle_open .et_pb_toggle_content { display: block; }

/* ===== MODULE: CONTACT FORM ===== */
.et_pb_contact_form { margin: 30px 0; }
.et_pb_contact_form .et_pb_contact_field { margin-bottom: 20px; }
.et_pb_contact_form label {
  display: block;
  font-family: 'Barlow Semi Condensed', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
}
.et_pb_contact_form input,
.et_pb_contact_form textarea,
.et_pb_contact_form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
  font-size: 15px;
  color: #666;
  background: #f9f9f9;
  transition: all 0.3s;
}
.et_pb_contact_form input:focus,
.et_pb_contact_form textarea:focus,
.et_pb_contact_form select:focus {
  outline: none;
  border-color: #0862ad;
  background: #fff;
}
.et_pb_contact_form textarea { min-height: 150px; resize: vertical; }
.et_pb_contact_form .et_pb_contact_submit {
  display: inline-block;
  padding: 12px 40px;
  background: #0862ad;
  color: #fff !important;
  border: none;
  border-radius: 7px;
  font-family: 'Barlow Semi Condensed', Helvetica, Arial, Lucida, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}
.et_pb_contact_form .et_pb_contact_submit:hover { background: #06508c; }
.et_pb_contact_form .et_contact_bottom_container { display: flex; justify-content: flex-end; margin-top: 10px; }
.et_pb_contact_form .et_pb_contact_field_half { width: 48%; float: left; }
.et_pb_contact_form .et_pb_contact_field_half + .et_pb_contact_field_half { margin-left: 4%; }
.et_pb_contact_form .clearfix:after { content: ""; display: table; clear: both; }
.et-pb-contact-message { margin: 10px 0; }
.et-pb-contact-message.success { color: #73bd45; }
.et-pb-contact-message.error { color: #e02b27; }

/* Conditional fields */
.et_pb_contact_field[data-conditional-logic] { display: none; }
.et_pb_contact_field[data-conditional-logic].visible { display: block; }

/* ===== MODULE: FULLWIDTH HEADER ===== */
.et_pb_fullwidth_header { padding: 80px 0; text-align: center; background: #333; color: #fff; }
.et_pb_fullwidth_header h1 { color: #fff; font-size: 36px; }
.et_pb_fullwidth_header .et_pb_fullwidth_header_subhead { color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 20px; }

/* ===== PAGE HEADER (interior pages) ===== */
.page-header-section {
  background: #333;
  padding: 60px 0 !important;
  text-align: center;
}
.page-header-section h1 {
  color: #fff;
  font-size: 40px;
  margin: 0;
}
.page-header-section p {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  margin: 10px 0 0;
}

/* ===== CONTENT SECTION ===== */
.content-section { padding: 50px 0; }
.content-section h2 { color: #333; font-size: 28px; margin-bottom: 20px; }
.content-section h3 { color: #333; font-size: 22px; margin-bottom: 15px; }
.content-section p, .content-section ul, .content-section ol { color: #666; line-height: 1.7em; }
.content-section ul { list-style: disc; padding-left: 20px; }
.content-section ul li { margin-bottom: 8px; }

/* ===== FAQ SECTION ===== */
.faq-section { padding: 50px 0; }
.faq-section h2 { text-align: center; margin-bottom: 30px; }
.faq-list { max-width: 800px; margin: 0 auto; }

/* ===== FULLWIDTH SECTION (full-width background rows) ===== */
.et_pb_section.et_pb_fullwidth_section { padding: 0; }
.et_pb_fullwidth_row { width: 100%; max-width: 100%; padding: 0 5%; }

/* ===== BACKGROUND STYLES ===== */
.has-background { background-size: cover; background-position: center; background-repeat: no-repeat; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: #0862ad;
  color: #fff;
  text-align: center;
  padding: 60px 0 !important;
}
.cta-section h2 { color: #fff; font-size: 32px; margin-bottom: 15px; }
.cta-section p { color: rgba(255,255,255,0.9); font-size: 18px; margin-bottom: 25px; }
.cta-section .et_pb_button { border-color: #fff; color: #fff; }

/* ===== INFO SECTION (home bottom) ===== */
.info-section { padding: 60px 0; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
.info-card { text-align: center; }
.info-card .info-icon { font-size: 48px; color: #0862ad; margin-bottom: 15px; }
.info-card h3 { font-size: 20px; }
.info-card p { font-size: 15px; }
@media (max-width: 768px) {
  .info-grid { grid-template-columns: 1fr; }
}

/* ===== SERVICE DETAIL SECTION (console pages) ===== */
.service-detail-section { padding: 60px 0; }
.service-detail-section .service-content { display: flex; gap: 50px; align-items: flex-start; flex-wrap: wrap; }
.service-detail-section .service-text { flex: 1; min-width: 300px; }
.service-detail-section .service-image { flex: 0 0 auto; max-width: 400px; }
.service-detail-section .service-image img { max-height: 300px; }
.service-detail-section .service-features { margin-top: 30px; }
.service-detail-section .service-features h3 { font-size: 20px; margin-bottom: 15px; }
.service-detail-section .service-features ul { list-style: none; padding: 0; }
.service-detail-section .service-features ul li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}
.service-detail-section .service-features ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #73bd45;
  font-weight: 700;
}

/* ===== MODEL COMPARISON ===== */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.comparison-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 7px;
  padding: 20px 20px 5px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.comparison-card:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.comparison-image {
  text-align: center;
  margin-bottom: 10px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comparison-image img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
}
.comparison-card h3 {
  font-size: 22px;
  margin-bottom: 2px;
  text-align: center;
  color: #001a4d;
}
.comparison-card .comparison-subtitle {
  text-align: center;
  color: #999;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-family: 'Barlow Semi Condensed', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
}
.comparison-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.comparison-card h4 {
  font-size: 15px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.comparison-card .pros h4 { color: #73bd45; }
.comparison-card .cons h4 { color: #cc3333; }
.comparison-card .pros { margin-bottom: 12px; }
.comparison-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.comparison-card ul li {
  padding: 4px 0 4px 20px;
  position: relative;
  font-size: 14px;
  line-height: 1.45em;
  color: #666;
  border-bottom: 1px solid #f0f0f0;
}
.comparison-card .pros ul li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: #73bd45;
  font-weight: 700;
}
.comparison-card .cons ul li::before {
  content: "\2013";
  position: absolute;
  left: 0;
  color: #cc3333;
  font-weight: 700;
}
@media (max-width: 768px) {
  .comparison-grid { grid-template-columns: 1fr; }
}

/* ===== SPECS & FEATURES ===== */
.specs-section {
  padding: 60px 0;
}
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.spec-card {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 7px;
  padding: 20px;
  transition: all 0.3s;
}
.spec-card:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border-color: #0862ad;
}
.spec-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #001a4d;
}
.spec-card p {
  font-size: 14px;
  line-height: 1.6em;
  color: #666;
  margin: 0;
}
@media (max-width: 768px) {
  .specs-grid { grid-template-columns: 1fr; }
}

/* ===== PRICING TABLE ===== */
.pricing-table { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 30px; }
.pricing-card {
  border: 1px solid #e0e0e0;
  border-radius: 7px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
}
.pricing-card:hover { box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.pricing-card h3 { font-size: 20px; margin-bottom: 10px; }
.pricing-card .price { font-size: 36px; color: #0862ad; font-weight: 700; margin-bottom: 10px; }
.pricing-card .price span { font-size: 16px; color: #999; }
.pricing-card ul { list-style: none; padding: 0; margin: 20px 0; }
.pricing-card ul li { padding: 8px 0; border-bottom: 1px solid #f0f0f0; color: #666; font-size: 15px; }
.pricing-card .et_pb_button { border-color: #0862ad; color: #0862ad; }
.pricing-card .et_pb_button:hover { background: #0862ad; color: #fff; }
@media (max-width: 768px) { .pricing-table { grid-template-columns: 1fr; } }

/* ===== FOOTER ===== */
#main-footer {
  background: #222;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}
#main-footer p { margin: 0; color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.5em; }
#main-footer a { color: #73bd45; }
#main-footer a:hover { color: #fff; }
#footer-bottom { background: #1a1a1a; padding: 15px 0; text-align: center; }
#footer-bottom p { margin: 0; color: rgba(255,255,255,0.5); font-size: 13px; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.clearfix:after { content: ""; display: table; clear: both; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.hidden { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .hero-section .hero-content { flex-direction: column; text-align: center; }
  .hero-section .hero-text h1 { font-size: 36px; }
  .hero-section .hero-images img { max-height: 200px; }
  .console-cards { grid-template-columns: 1fr; }
  .service-detail-section .service-content { flex-direction: column; }
  .service-detail-section .service-image { order: -1; text-align: center; }
  .page-header-section h1 { font-size: 30px; }
}
@media (max-width: 480px) {
  html { font-size: 15px; }
  .hero-section .hero-text h1 { font-size: 28px; }
  .hero-section .hero-images img { max-height: 150px; }
  #main-header { padding: 0 3%; }
}
