@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Roboto:wght@300;400;500&family=Poppins:wght@400;600&display=swap");

:root {
  --primary: #0052cc;
  --primary-hover: #003d99;
  --dark: #172b4d;
  --text: #42526e;
  --light-bg: #f4f5f7;
  --white: #ffffff;
  --accent: #00b8d9;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;

  --cool-ice: #f0f9ff; /* Very light blue-white */
  --cool-slate: #e2e8f0; /* Clean border color */
  --cool-accent: #3b82f6; /* Professional "Tech" blue */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

@media (max-width: 1024px) {
  body.menu-open {
    overflow-y: hidden;
    width: 100%;
  }
}

html,
body {
  font-family: "Inter", sans-serif;
  background: #f5f7fa;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;

  min-height: 100vh;

  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* =========================
   NAVBAR BASE
========================= */

nav {
  font-family: "Inter", sans-serif;
}

#nav-support-page {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* NAV CONTAINER */
#nav-support-page nav {
  max-width: 1400px;
  margin: auto;
  padding: 10px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* MENU TOGGLE */
/* MENU TOGGLE */

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
}

.menu-toggle {
  display: none;

  background: none;
  border: none;

  font-size: 32px;
  cursor: pointer;

  color: #1f2937 !important;

  z-index: 2000;
}

@media (max-width: 1024px) {
  html,
  body {
    overflow-x: hidden;
    height: 100%;
  }

  /* SHOW HAMBURGER */
  .menu-toggle {
    display: block;
  }

  /* NAV LAYOUT */
  #nav-support-page nav {
    position: relative;
  }

  /* MOBILE MENU PANEL*/

  .nav-links {
    position: fixed;

    top: 0;

    right: -100%;

    width: 100vw;
    height: 100dvh;

    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(18px);

    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    padding: 120px 30px 40px;

    gap: 10px;

    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);

    transition: right 0.35s ease;

    z-index: 1500;

    overflow-y: auto;
  }

  /* ACTIVE MOBILE MENU */

  .nav-links.active {
    right: 0;
  }

  /* NAV ITEMS */
  #nav-support-page ul.nav-links li {
    width: 100%;
  }

  /* LINKS */
  #nav-support-page .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    padding: 16px 0;

    font-size: 17px;
    font-weight: 500;

    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  /* REMOVE DESKTOP UNDERLINE EFFECT */
  #nav-support-page .nav-links a::after {
    display: none;
  }
  /* DROPDOWN */
  .dropdown-menu {
    position: static;

    width: 100%;
    min-width: 100%;

    padding: 0;

    margin-top: 8px;

    border-radius: 12px;

    opacity: 1;
    visibility: visible;
    transform: none;

    display: none;

    background: rgba(59, 130, 246, 0.04);

    border: 1px solid rgba(59, 130, 246, 0.08);

    box-shadow: none;
  }

  /* ACTIVE DROPDOWN */
  .dropdown-menu.active {
    display: flex;
  }
}

/* DEFAULT */
.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

/* MOBILE */
@media (max-width: 1024px) {
  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none !important;
  }

  #nav-support-page ul.nav-links li {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #nav-support-page #lang-toggle {
    width: 30%;
  }

  .btn-lang-toggle {
    margin-top: 30px;
  }
}

/* =========================
   LOGO
========================= */
#nav-logo {
  height: 100px;
  cursor: pointer;
  transition: transform 0.25s ease;
}

#nav-logo:hover {
  transform: scale(1.05);
}

/* =========================
   NAV LINKS
========================= */
#nav-support-page ul {
  list-style: none;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

/* LINKS */
#nav-support-page a {
  text-decoration: none;
  color: #1f2937;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: color 0.25s ease;
}

/* UNDERLINE EFFECT (Apple style) */
#nav-support-page a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #3b82f6;
  transition: width 0.25s ease;
}
/* HOVER */
#nav-support-page a:hover {
  color: #2563eb;
}

#nav-support-page a:hover::after {
  width: 100%;
}

/* =========================
   DROPDOWN MENU
========================= */

.nav-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;

  min-width: 240px;
  padding: 12px 12px;

  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(12px);

  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 4px 10px rgba(0, 0, 0, 0.04);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);

  transition: all 0.25s ease;
  z-index: 999;

  flex-direction: column;
}

#nav-support-page .dropdown-menu {
  align-items: flex-start;
  justify-content: flex-start;
}

#nav-support-page .nav-item .dropdown-menu {
  row-gap: 13px;
}

.dropdown-menu li {
  display: block;
}

#nav-support-page .dropdown-menu a {
  display: block;
  padding: 12px 0px;

  font-size: 16px;
  color: #1f2937;

  border-radius: 8px;
  margin: 2px 8px;

  transition: all 0.2s ease;
}

#dropDownMenu.active-services li a {
  color: #1f2937 !important;
}

#dropDownMenu.active-services {
  visibility: visible;
  opacity: 1;
}

@media (min-width: 1025px) {
  .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
}

#nav-support-page .dropdown-menu a {
  color: #1f2937;
}

.dropdown-menu a:hover {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  transform: translateX(4px);
}

.dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-item.dropdown > a::before {
  display: inline-block;
  transition: transform 0.2s ease;
}

.nav-item.dropdown:hover > a::before {
  transform: rotate(180deg);
}

/* Language toggle button */
/* Language toggle button */

nav #lang-toggle {
  color: white;
  font-weight: 500;
  box-shadow: rgba(59, 130, 246, 0.25) 0px 8px 20px;
  font-family: Inter, sans-serif;
  background: linear-gradient(135deg, rgb(59, 130, 246), rgb(30, 64, 175));
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

nav #lang-toggle:hover {
  color: white;

  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(59, 130, 246, 0.35);
}

nav #lang-toggle::after {
  display: none;
}

/* =========================
   CTA BUTTON (OPTIONAL UPGRADE)
========================= */

#nav-support-page.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* =========================
   RESPONSIVE (MOBILE)
========================= */
@media (max-width: 768px) {
  #nav-support-page nav {
    padding: 14px 20px;
  }

  #nav-support-page ul {
    gap: 16px;
  }

  #nav-support-page a {
    font-size: 14px;
  }

  .nav-logo {
    height: 32px;
  }
}

/* Hero section */
/* Hero section */
/* Hero section */

.hero-free-support {
  padding: 80px 8%;
  display: flex;

  justify-content: center;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 8px rgba(59, 130, 246, 0.35);
}

@media (max-width: 724px) {
  .hero-free-support {
    padding: 30px 10%;
  }
}

@media (max-width: 1024px) {
  .hero-free-support {
    padding: 30px 10%;
  }
}

.free-support-info {
  display: flex;
  gap: 120px;
  max-width: 1400px;
}

.free-support-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 600px;
}

.free-support-header h1 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 38px;
  margin: 0;
}

.free-support-header h1 span {
  display: inline-block;
}

.free-support-header p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 520px;
}

.free-support-header .lead {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  margin-top: 4px;
}

.free-support-header h2 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 38px;
  margin: 0;
  color: #3b82f6;
}

.free-support-header h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #3b82f6;
  margin-top: 25px;
}

@media (max-width: 1024px) {
  .free-support-header h2 {
    font-size: 30px;
  }

  #nav-support-page ul {
    gap: 30px;
  }
}

@media (max-width: 724px) {
  .free-support-header h2 {
    font-size: 30px;
  }

  #nav-support-page ul {
    gap: 10px;
  }
}

.section-eyebrow {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #3b82f6;
  font-weight: 500;
  position: relative;
  padding-left: 45px; /* space for the line */
  display: inline-block;
}

.section-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 30px;
  height: 2px;
  background: #3b82f6;
}

.section-eyebrow::before {
  background: linear-gradient(90deg, #3b82f6, transparent);
}

.highlight {
  color: #3b82f6;
}

.lead {
  font-size: 18px;
  font-weight: 500;
  color: #222;
}

.emphasis {
  font-weight: 600;
  color: #111;
}

/* =========================
   BUTTONS
========================= */
.free-support-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

/* Primary Button */
.btn-support-primary {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
  font-family: "Inter", sans-serif;
}

.btn-support-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(59, 130, 246, 0.35);
}

/* Secondary Button */
.btn-support-secondary {
  background: white;
  color: #1e40af;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  transition: all 0.25s ease;
  font-family: "Inter", sans-serif;
}

.btn-support-secondary:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

/* image style */
.free-support-image {
  flex: 1;
  display: flex;
}

.free-support-image img {
  max-width: 350px;
  border-radius: 12px;
  display: block;
}

/* --- REVIEWS --- */
/* --- REVIEWS --- */
/* --- REVIEWS --- */

.container {
  max-width: 1200px;
  margin: 0px auto;
}

#reviews {
  padding: 80px 3%;

  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Subtle background "Glow" for depth */
#reviews::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

#reviews #reviews-heading {
  color: black;
  font-size: 2.5rem;
  text-align: center;
}

#reviews .section-header p {
  color: black;
}

.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 3px;
  text-align: left;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 10px auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .reviews-grid {
    margin-top: 20px !important;
  }
}

/* --- THE REVIEW CARD --- */
.review-card {
  background: rgba(255, 255, 255, 0.03); /* Glassmorphism on dark bg */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;

  row-gap: 7px;

  box-shadow: rgba(0, 6, 16, 0.1) 0px 1px 3px;
}

/* .review-card:hover {
  transform: translateY(-10px);
  border-color: var(--cool-accent);
  background: rgba(255, 255, 255, 0.05);
} */

/* 1. Modern Quote Icon */
.review-card::before {
  content: "“";
  font-family: serif;
  font-size: 5rem;
  color: black;
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.2;
}

/* 2. Professional Star Indicator (Modern touch) */
.review-card::after {
  content: "★★★★★";
  color: #fbbf24; /* Premium Gold */
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 15px;
  display: block;
}

.review-card p {
  color: rgb(119, 119, 119);
}

.review-card h4 {
  color: black;
  margin-top: 20px;
}

/* 3. The Footer of the Card */
figcaption {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.review-name {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.review-meta {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cool-accent);
  font-weight: 600;
}

.accent-line {
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 15px auto;
}

/* --- CONTACT FORM --- */
/* --- CONTACT FORM --- */
/* --- CONTACT FORM --- */

.section-header p {
  margin-top: 20px;
}

.contact-form {
  padding: 30px;
  border-radius: 10px;
}

#contact-details {
  color: #3b82f6;
}

#contact {
  padding: 80px 0;
  background-color: var(
    --white
  ); /* Contrast against the dark Reviews section */
  display: flex;

  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: rgba(0, 6, 16, 0.35) 0px 1px 3px;
}

.contact-grid {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 100px;
}

.contact-us {
  width: 450px;
}

.fill-the-form {
  width: 500px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
}

@media (max-width: 1024px) {
  #contact {
    padding: 40px 0;
  }

  .contact-us {
    max-width: 300px;
  }
  .fill-the-form {
    max-width: 300px;
  }
}

@media (max-width: 724px) {
  .contact-grid {
    display: flex;

    gap: 40px;

    align-items: center;
    flex-direction: column;
  }
  #contact {
    padding: 40px 0;
  }

  .contact-us {
    max-width: 300px;
  }
  .fill-the-form {
    max-width: 330px;
  }
}

/* 1. Left Side: Contact Info Details */
.contact-details {
  margin: 40px 0;
}

.contact-details li {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-details li strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cool-accent);
}

.contact-details li a,
.contact-details li span {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
}

.contact-note {
  font-size: 0.9rem;
  color: #3b82f6;

  border-radius: 8px;
  
  display: inline-block;
  
}

.form-row {
  margin-bottom: 20px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
}

/* The "Glow" Focus State */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  background-color: var(--white);
  border-color: var(--cool-accent);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.1); /* Soft Blue Halo */
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
  border: none;
  font-size: 16px;
}

.btn-primary.btn-full:hover {
  /* background: var(--primary-hover); */
  transform: translateY(-1px);
  box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.4);
}

/* 5. Error Message Polish */
.field-error {
  color: #e11d48; /* Sophisticated Rose-Red */
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 5px;
  height: 1rem; /* Prevents layout jump when error appears */
}

.form-message {
  margin-top: 15px;
  min-height: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* WARNING MODAL FOR THE FORM */
/* WARNING MODAL FOR THE FORM */
/* WARNING MODAL FOR THE FORM */

/* 1. The Dimmed Overlay */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Solid dark dim */
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

/* 2. The Simple White/Dark Box */
.modal-box {
  background: #ffffff; /* Let's try light for high contrast, or use #1a1a1a for dark */
  color: #1a1a1a;
  border-radius: 8px;
  width: 90%;
  max-width: 380px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* 3. Typography */
.modal-box h3 {
  margin-top: 0;
  font-size: 1.25rem;
  color: #ef4444; /* Keep the red for the "Warning" text */
  margin-bottom: 15px;
}

.modal-box p {
  font-size: 1rem;
  line-height: 1.5;
  color: #4b5563; /* Soft gray for readability */
  margin-bottom: 25px;
}

/* 4. The Redesigned Buttons */
.modal-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* The primary "Understood" button */
.btn-confirm {
  background: #0052cc;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  flex: 1; /* Makes it fill the space */
}

.btn-confirm:hover {
  background: #333333;
}

/* The small "X" in the corner (optional) */
.close-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #9ca3af;
}

/* --- FOOTER --- */
/* --- FOOTER --- */
/* --- FOOTER --- */

footer {
  font-family: "Inter", sans-serif;
}

#nav-logo-footer {
  height: 100px;
  cursor: pointer;
  transition: transform 0.25s ease;
  filter: brightness(0) invert(1);
}

.footer-meta {
  opacity: 0.6;
  font-size: 0.9rem;
  margin-top: 10px;
}

/* =========================
   FOOTER BASE
========================= */

.footer {
  background: #0f172a; /* deep modern dark */
}

.footer a {
  text-decoration: none;
}

.footer-information {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-details {
  display: flex;
  width: 1400px;
  color: rgb(156, 163, 175);
  gap: 200px;
  padding: 40px 8%;
}

.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  text-decoration: none;
  list-style: none;
}

.footer-services ul li:hover {
  color: white;
}

.footer-contact ul li:hover {
  color: white;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  list-style: none;
}

.footer-contact-header {
  color: white;
}

.footer-information h3 {
  font-size: 15px;
}

.footer-details h3 {
  font-family: "Segoe UI", sans-serif;
  color: rgb(156, 163, 175);
}
.footer-details p {
  margin-top: 20px;
}

.footer-header {
  margin-bottom: 20px;
  color: white;
}

.footer-contact-header {
  margin-bottom: 20px;
}

/* CONTAINER */
.footer-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 30px 8%;
}

/* =========================
   BRAND TEXT
========================= */
.footer-brand {
  font-size: 14px;
  color: #9ca3af;
}

.footer-brand span {
  color: #ffffff;
  font-weight: 500;
}

/* =========================
   META TEXT
========================= */
.footer-meta {
  font-size: 14px;
  color: rgb(156, 163, 175);
  letter-spacing: 0.3px;
}

/* =========================
   TOP BORDER GLOW LINE
========================= */
.site-footer::before {
  content: "";
  display: block;
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(59, 130, 246, 0.6),
    transparent
  );
  margin: 0 20%;
}

@media (max-width: 1024px) {
  .free-support-info {
    display: flex;
    flex-direction: column;

    max-width: 1400px;

    gap: 50px;
  }

  .footer-details {
    display: flex;
    flex-direction: column;
    width: 100%;
    color: rgb(156, 163, 175);
    padding: 40px 10%;
    justify-content: space-between;
    gap: 40px;
  }

  .site-footer {
    padding: 40px 8%;
  }
}

@media (max-width: 724px) {
  #reviews {
    padding: 40px 3%;
  }

  .free-support-header h1 {
    font-size: 30px;
  }

  .free-support-header .lead {
    font-size: 15px;
  }

  .free-support-header p {
    font-size: 15px;
  }

  .free-support-image {
    display: flex;
    justify-content: center;
  }

  .free-support-image img {
    max-width: 300px;
    border-radius: 12px;
    display: none;
  }

  .section-header p {
    margin: 10px auto;
  }

  #reviews #reviews-heading {
    font-size: 2rem;
  }
  #reviews .section-header p {
    font-size: 1rem;
  }

  .btn-support-primary {
    font-size: 0.9rem;
  }
}
