.no-border {
  border: none !important;
}
.block {
  display: block !important;
}
.case-studies-list {
  list-style: number;
}
.seller-faq-list,
.case-studies-list ul {
  list-style: disc !important;
  margin-left: 50px !important;
}
.case-studies-list ul li,
.seller-faq-list li {
  margin-top: 20px !important;
}
.white {
  color: white !important;
}
.send-button:disabled {
  background-color: gray !important;
  cursor: not-allowed !important;
}
.para {
    font-size: 18px !important;
    font-style: normal !important;
    /*font-weight: 400 !important;*/
    /*line-height: 18px !important;*/
    /*letter-spacing: 0em !important;*/
}
.bold {
    font-weight: bold !important;
}

/* lite grey */
.background-tertiary {
    background-color: #66A0DA !important;
}
/* lite orange */
.background-tertiary {
    background: #F7966B !important;
}

.background-secondary {
    background-color: #0061C2 !important;
}
.secondary {
    color: #0061C2 !important;
}
.uppercase {
  text-transform: uppercase !important;
}

:root {
  --swiper-navigation-color: #FF5406; /* Sets the color to red */
  --swiper-navigation-size: 30px; /* Adjusts the size if needed */
}
.border-primary {
    border-color: #FF5406 !important;
}
.background-primary {
    background: #FF5406 !important;
}
.primary {
    color: #FF5406 !important;
}

.about-container ul {
  list-style: disc !important;
}

.about-container ul li {
  /*font-size: 16px !important;*/
  margin-top: 30px;
}

.about-container hr {
  border-top: 2px solid black;
  margin-top: 50px;
  margin-bottom: 50px;
}

.about-container section {
  padding: 20px 12%;
  position: relative;
  overflow: hidden;
}

.about-container h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #005baa;
  position: relative;
  display: inline-block;
}

.about-container h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #f05924;
  border-radius: 2px;
}

.about-container p {
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: #333;
  opacity: 0.9;
}

.about, .vision, .mission, .difference, .offices {
  background: #fff;
  margin: 30px 0;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeUp 1.2s ease both;
}

.about:hover, .vision:hover, .mission:hover, .difference:hover, .offices:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.mission ul {
  margin-top: 15px;
  padding-left: 25px;
}

.mission ul li {
  margin-bottom: 12px;
  list-style: "✔  ";
  font-size: 1.05rem;
}

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

.diff-item {
  background: #f0f7ff;
  padding: 25px;
  border-radius: 14px;
  transition: all 0.4s ease;
  position: relative;
}

.diff-item:hover {
  background: #e0f2ff;
  transform: translateY(-5px);
}

.diff-item span {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 10px;
}

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

.office {
  background: #f8fbff;
  padding: 25px;
  border-left: 5px solid #f05924;
  border-radius: 12px;
  transition: 0.3s ease;
}

.office:hover {
  background: #eef6ff;
}

.email-box {
  margin-top: 40px;
  text-align: center;
  font-size: 1.1rem;
}

.email-box a {
  /*color: #005baa;*/
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.email-box a:hover {
  color: #00aaff;
  text-decoration: underline;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FAQ Section */
.faqs {
  padding: 70px 20px;
  /*background: #f9fbff;*/
  /*font-family: "Segoe UI", sans-serif;*/
}

.faqs__title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInDown 0.8s ease-in-out;
}

.faq__group {
  margin-bottom: 30px;
}

.faq__type {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0055cc;
  /*border-left: 4px solid rgb(240 89 36);*/
  /*padding-left: 10px;*/
  animation: fadeIn 1s ease-in-out;
}

/* FAQ Item */
.faq__item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  background: #fff;
  transition: transform 0.3s ease;
}

.faq__item:hover {
  transform: translateY(-3px);
}

.faq__question {
  width: 100%;
  padding: 15px 20px;
  text-align: left;
  background: none;
  border: none;
  /*font-size: 1rem;*/
  font-weight: 600 !important;
  cursor: pointer;
  /*color: #222;*/
  color: black;
  position: relative;
}

.faq__question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq__item.active .faq__question::after {
  content: "−";
  transform: rotate(180deg);
}

/* FAQ Answer */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 200px;
  padding: 15px 20px 20px;
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Section */
.how-it-works {
  padding: 70px 20px;
  background: #f9fbff;
  text-align: center;
  /*font-family: "Segoe UI", sans-serif;*/
}

.how__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  animation: fadeInDown 0.8s ease-in-out;
}

/* Cards grid */
.how__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* Individual card */
.how__card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

.how__card:nth-child(1) { animation-delay: 0.2s; }
.how__card:nth-child(2) { animation-delay: 0.4s; }
.how__card:nth-child(3) { animation-delay: 0.6s; }
.how__card:nth-child(4) { animation-delay: 0.8s; }

.how__card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Number badge */
.how__number {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #0077ff, #0055cc);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.how__card:hover .how__number {
  transform: scale(1.2) rotate(10deg);
}

/* Card content */
.how__card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #222;
}

.how__card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CTA Section */
.cta {
  padding: 70px 20px;
  text-align: center;
  background: linear-gradient(135deg, #eef7ff, #e0f0ff);
  /*font-family: "Segoe UI", sans-serif;*/
}

.cta__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  animation: fadeInDown 0.8s ease-in-out;
}

.cta__subtitle {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 30px;
  animation: fadeIn 1s ease-in-out;
}

/* Button */
.cta__button {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #0077ff, #0055cc);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 119, 255, 0.3);
  transition: all 0.3s ease;
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

.cta__button:hover {
  transform: translateY(-5px) scale(1.05);
  background: linear-gradient(135deg, #0055cc, #003f99);
  box-shadow: 0 8px 20px rgba(0, 119, 255, 0.4);
}

/* Reuse animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Container */
.sell-mewp {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
  text-align: center;
  /*font-family: "Segoe UI", sans-serif;*/
}

.sell-mewp__title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  animation: fadeInDown 0.8s ease-in-out;
}

.sell-mewp__subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  animation: fadeIn 1s ease-in-out;
}

/* Cards Grid */
.sell-mewp__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, max-content));
  gap: 20px;
  justify-content: center; /* center every row */
}

/* Card */
.sell-mewp__card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

.sell-mewp__card:nth-child(1) { animation-delay: 0.2s; }
.sell-mewp__card:nth-child(2) { animation-delay: 0.4s; }
.sell-mewp__card:nth-child(3) { animation-delay: 0.6s; }
.sell-mewp__card:nth-child(4) { animation-delay: 0.8s; }

.sell-mewp__card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Icon */
.icon {
  display: inline-block;
  font-size: 1.6rem;
  color: #2ecc71;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.sell-mewp__card:hover .icon {
  transform: rotate(20deg) scale(1.2);
}

/* Heading inside card */
.sell-mewp__card h3 {
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
  line-height: 1.4;
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.contact-section {
  /*max-width: 700px;*/
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info h3 {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
}

.contact-info h2 {
  margin: 0.5rem 0;
  font-size: 1.4rem;
}

.contact-info address {
  font-style: normal;
  color: #444;
  line-height: 1.5;
}

.message-info {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #555;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: #333;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  margin-top: 0.25rem;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  background-color: white !important;
  color: black !important;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.send-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #222;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}

.send-button:hover {
  background: #000;
}

.send-button .dot {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
}

/* Page container */
.market-intel-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  /*font-family: sans-serif;*/
  line-height: 1.6;
  color: #222;
  background: #fff;
}

/* Header */
.market-intel-page:has(.intel-header) .intel-header {
  text-align: center;
  margin-bottom: 2rem;
}

.market-intel-page:has(.intel-header) .intel-header h1 {
  font-size: 2.3rem;
  margin: 0;
}

.market-intel-page:has(.intel-header) .intel-header p {
  color: #666;
  margin-top: 0.3rem;
}

/* Sections */
.market-intel-page:has(.intel-section) .intel-section {
  margin-bottom: 2rem;
  border-left: 4px solid #eee;
  padding-left: 1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.market-intel-page:has(.intel-section) .intel-section:hover {
  border-color: #f05924;
  background: #f9f9f9;
}

.market-intel-page:has(.intel-section) .intel-section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.market-intel-page:has(.intel-section) .intel-section p {
  margin: 0;
  color: #444;
}

/* Page container */
.team-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  /*font-family: sans-serif;*/
  line-height: 1.6;
  color: #222;
  background: #fff;
}

/* Header */
.team-page:has(.team-header) .team-header {
  text-align: center;
  margin-bottom: 2rem;
}
*
.team-page:has(.team-header) .team-header h1 {
  font-size: 2.2rem;
  margin: 0;
}

.team-page:has(.team-header) .team-header p {
  color: #666;
  margin-top: 0.3rem;
}

/* Team grid */
.t/eam-page:has(.team-grid) .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* Team member cards */
.team-page:has(.team-member) .team-member {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.2rem;
  background: #fafafa;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.team-page:has(.team-member) .team-member:hover {
  transform: translateY(-4px);
  border-color: #ccc;
}

/* Member titles & roles */
.team-page:has(.team-member) .team-member h2 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.team-page:has(.team-member) .team-member p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}

/* Page container */
.resources-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  /*font-family: sans-serif;*/
  line-height: 1.6;
  color: #222;
  background: #fff;
}

/* Header */
.resources-page:has(.resources-header) .resources-header {
  text-align: center;
  margin-bottom: 2rem;
}

.resources-page:has(.resources-header) .resources-header h1 {
  font-size: 2.2rem;
  margin: 0;
}

.resources-page:has(.resources-header) .resources-header p {
  color: #666;
  margin-top: 0.3rem;
}

/* Resource list */
.resources-page:has(.resources-list) .resources-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Resource cards */
.resources-page:has(.resource-card) .resource-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.2rem;
  background: #fafafa;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.resources-page:has(.resource-card) .resource-card:hover {
  transform: translateY(-4px);
  border-color: #ccc;
}

/* Titles & text */
.resources-page:has(.resource-card) .resource-card h2 {
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
}

.resources-page:has(.resource-card) .resource-card p {
  margin: 0 0 1rem;
  color: #555;
  font-size: 0.95rem;
}

/* Links */
.resources-page:has(button) button,
.resources-page:has(a) a {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  /*background: #0066cc;*/
  /*color: #fff;*/
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.resources-page:has(a) a:hover {
  /*background: #004999;*/
}

/* Page container */
.video-gallery {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
  /*font-family: sans-serif;*/
  line-height: 1.5;
  color: #222;
  background: #fff;
}

/* Header */
.video-gallery:has(.gallery-header) .gallery-header {
  text-align: center;
  margin-bottom: 2rem;
}

.video-gallery:has(.gallery-header) .gallery-header h1 {
  font-size: 2.2rem;
  margin: 0;
}

.video-gallery:has(.gallery-header) .gallery-header p {
  color: #666;
  margin-top: 0.3rem;
}

/* Grid layout */
.video-gallery:has(.gallery-grid) .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

/* Video card */
.video-gallery:has(.video-card) .video-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1rem;
  background: #fafafa;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.video-gallery:has(.video-card) .video-card:hover {
  transform: translateY(-4px);
  border-color: #ccc;
}

/* Card titles & text */
.video-gallery:has(.video-card) .video-card h2 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.video-gallery:has(.video-card) .video-card p {
  margin: 0 0 1rem;
  color: #555;
  font-size: 0.95rem;
}

/* Video element */
.video-gallery:has(video) video {
  width: 100%;
  border-radius: 8px;
  outline: none;
}

/* Page container */
.privacy-policy {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  /*font-family: sans-serif;*/
  line-height: 1.6;
  color: #222;
  background: #fff;
}

/* Header */
.privacy-policy:has(.privacy-header) .privacy-header {
  margin-bottom: 2rem;
}

.privacy-policy:has(.privacy-header) .privacy-header h1 {
  font-size: 2.2rem;
  margin: 0;
}

.privacy-policy:has(.privacy-header) .privacy-header p {
  color: #666;
  margin-top: 0.3rem;
}

/* Sections */
.privacy-policy:has(.privacy-section) .privacy-section {
  margin-bottom: 2rem;
}

.privacy-policy:has(.privacy-section) .privacy-section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.privacy-policy:has(.privacy-section) .privacy-section p {
  margin: 0.5rem 0;
  color: #444;
}

/* Links */
.privacy-policy:has(a) a {
  color: #0066cc;
  text-decoration: none;
}

.privacy-policy:has(a) a:hover {
  text-decoration: underline;
}

/* Layout */
.brand-detail {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  /*font-family: sans-serif;*/
  color: #222;
}

/* Header */
.brand-header {
  margin-bottom: 2rem;
}

.brand-title {
  font-size: 2.5rem;
  margin: 0;
}

.brand-tagline {
  margin-top: 0.3rem;
  font-size: 1.1rem;
  color: #666;
}

/* Description */
.brand-description h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.brand-description p {
  line-height: 1.6;
  color: #444;
}

/* 🔥 Parent selector example */
.brand-description:has(p:hover) {
  background: #f9f9f9;
  border-left: 4px solid #ccc;
  padding-left: 1rem;
}

.support {
  padding: 3rem 1rem;
  background-color: #f9fafb;
  /*font-family: Arial, sans-serif;*/
}

.support__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.support__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #111827;
}

.support__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.support__item {
  font-size: 1.1rem;
  color: #374151;
  margin-bottom: 0.8rem;
  padding-left: 2rem;
  position: relative;
}

.support__item::before {
  content: "✔️";
  position: absolute;
  left: 0;
  top: 0;
}

.ourstory {
  /*font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;*/
  background: #f9fbff;
  color: #0f1724;
  padding: 40px 20px;
}

.ourstory .ourstory__container {
  max-width: 900px;
  margin: 0 auto;
}

.ourstory .ourstory__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #071433;
}

.ourstory .ourstory__subtitle {
  font-size: 22px;
  font-weight: 600;
  margin: 24px 0 12px;
  color: #071433;
}

.ourstory .ourstory__text {
  font-size: 15px;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 16px;
}

.ourstory .ourstory__list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
  color: #334155;
  font-size: 15px;
  line-height: 1.6;
}

.ourstory .ourstory__contact {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 600;
}

.ourstory .ourstory__contact a {
  color: #0066ff;
  text-decoration: none;
  transition: color 0.2s;
}

.ourstory .ourstory__contact a:hover {
  color: #004bb5;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .ourstory .ourstory__title {
    font-size: 24px;
  }
  .ourstory .ourstory__subtitle {
    font-size: 20px;
  }
  .ourstory .ourstory__text,
  .ourstory .ourstory__list {
    font-size: 14px;
  }
}

.whyadvertise {
  /*font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;*/
  background: linear-gradient(180deg,#ffffff 0%, #f9fbff 100%);
  padding: 40px 20px;
  color: #0f172a;
}

.whyadvertise .whyadvertise__container {
  max-width: 1000px;
  margin: 0 auto;
}

.whyadvertise .whyadvertise__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #071433;
}

.whyadvertise .whyadvertise__brand {
  color: #0068cb;
}

.whyadvertise .whyadvertise__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px 20px;
}

.whyadvertise .whyadvertise__benefit {
  background: #fff;
  padding: 14px;
  border: 1px solid #e6f0ff;
  border-radius: 8px;
  font-size: 14px;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.whyadvertise .whyadvertise__subtitle {
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 12px;
  color: #071433;
}

.whyadvertise .whyadvertise__solutions {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  display: grid;
  gap: 10px;
}

.whyadvertise .whyadvertise__solutions li {
  font-size: 15px;
  line-height: 1.5;
  padding: 12px;
  background: #f9fbff;
  border-left: 4px solid #f05924;
  border-radius: 6px;
}

.whyadvertise .whyadvertise__icon {
  margin-right: 6px;
}

.whyadvertise .whyadvertise__who {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 25px 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.5;
}

.whyadvertise .whyadvertise__cta {
  padding: 20px;
  background: linear-gradient(90deg,#eef6ff 0%, #ffffff 100%);
  border: 1px solid #dbeafe;
  border-radius: 10px;
  text-align: center;
}

.whyadvertise .whyadvertise__cta-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #071433;
}

.whyadvertise .whyadvertise__cta-text {
  margin: 0 0 14px 0;
  font-size: 14px;
  color: #334155;
  line-height: 1.5;
}

.whyadvertise .whyadvertise__email {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 16px;
  background: #0066ff;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.whyadvertise .whyadvertise__email:hover {
  background: #0052cc;
  transform: translateY(-2px);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .whyadvertise .whyadvertise__benefits {
    grid-template-columns: 1fr;
  }
}

.center-vertical {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: fit-content;
  display: block;
}

.center-horizontal {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.whybuy {
  /*font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;*/
  /*background: linear-gradient(180deg,#ffffff 0%, #f7fbff 100%);*/
  padding: 36px 16px;
  color: #0f1724;
}

.whybuy .whybuy__container {
  max-width: 1000px;
  margin: 0 auto;
}

.whybuy .whybuy__title {
  margin: 0 0 18px 0;
  font-size: 24px;
  font-weight: 700;
  color: #071433;
}

.whybuy .whybuy__brand {
  color: #0066ff;
}

/* Benefits list */
.whybuy .whybuy__list {
  list-style: none;
  margin: 0 0 22px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px 18px;
}

.whybuy .whybuy__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e8f1ff;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 1px 0 rgba(2,6,23,0.03);
}

.whybuy .whybuy__icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #e6f0ff;
  color: #0066ff;
  font-weight: 700;
  font-size: 14px;
}

/* Content inside each item */
.whybuy .whybuy__content {
  flex: 1;
}

.whybuy .whybuy__heading {
  font-size: 15px;
  font-weight: 700;
  color: #0b1826;
  margin-bottom: 4px;
}

.whybuy .whybuy__desc {
  margin: 0;
  font-size: 14px;
  color: #475569;
  line-height: 1.4;
}

/* Help / CTA area */
.whybuy .whybuy__help {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 18px;
  border-radius: 10px;
  background: linear-gradient(90deg,#fff 0%, #f8fbff 100%);
  border: 1px solid #eef6ff;
}

.whybuy .whybuy__help-left {
  flex: 1;
}

.whybuy .whybuy__help-title {
  margin: 0 0 6px 0;
  font-size: 18px;
  font-weight: 700;
  color: #071433;
}

.whybuy .whybuy__help-text {
  margin: 0;
  font-size: 14px;
  color: #475569;
}

/* CTA links */
.whybuy .whybuy__help-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  min-width: 180px;
}

.whybuy .whybuy__phone,
.whybuy .whybuy__email {
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.whybuy .whybuy__phone {
  background: #e6fff0;
  color: #027a3d;
  box-shadow: 0 6px 18px rgba(2,122,61,0.06);
}

.whybuy .whybuy__email {
  background: #eef6ff;
  color: #034ea6;
  box-shadow: 0 6px 18px rgba(3,78,166,0.06);
}

.whybuy .whybuy__phone:hover,
.whybuy .whybuy__email:hover {
  transform: translateY(-3px);
}

/* Responsive tweaks */
@media (max-width: 880px) {
  .whybuy .whybuy__list {
    grid-template-columns: 1fr;
  }
  .whybuy .whybuy__help {
    flex-direction: column;
    align-items: stretch;
  }
  .whybuy .whybuy__help-cta {
    align-items: flex-start;
  }
}

.black {
  color: black !important;
}
.fontP {
  font-size: 16px;
}
.faq {
  /*font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;*/
  padding: 40px 16px;
  background: #f9fafb;
  color: #0f172a;
}

.faq .faq__container {
  max-width: 800px;
  margin: 0 auto;
}

.faq .faq__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 28px;
  text-align: center;
  color: #071433;
}

/* FAQ items */
.faq .faq__item {
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 10px;
}

/* Question button */
.faq .faq__question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #12203a;
  padding: 14px 10px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq .faq__question:hover {
  background: #f1f5f9;
}

/* Answer */
.faq .faq__answer {
  /*display: none;*/
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  padding: 0 10px 14px 10px;
}

/* Open state */
.faq .faq__item.active .faq__answer {
  display: block;
}


/* Radio wrapper */
.radio-group {
  display: flex;
  gap: 20px;
  align-items: center;
  /*font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;*/
}

/* Hide native radio */
.radio-group input[type="radio"] {
  display: none;
}

/* Custom circle */
.radio-group label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #334155;
  position: relative;
  padding-left: 28px; /* space for custom circle */
}

.radio-group label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 2px solid #64748b;
  border-radius: 50%;
  background: #fff;
  transition: all 0.2s ease;
}

.radio-group input[type="radio"]:checked + label::before {
  border-color: #0066ff;
  background: #0066ff;
  box-shadow: inset 0 0 0 4px #fff;
}

.radio-group input[type="radio"]:focus + label::before {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
}

.listingform {
  /*font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;*/
  background: #fdfdfd;
  padding: 40px 16px;
  color: #0f172a;
}

.listingform .listingform__container {
  max-width: 720px;
  margin: 0 auto;
}

.listingform .listingform__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 28px;
  text-align: center;
  color: #071433;
}

.listingform .listingform__title span {
  color: #0066ff;
}

/* Fields */
.listingform .listingform__field {
  margin-bottom: 20px;
}

.listingform .listingform__label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #12203a;
}

.listingform .required {
  color: red;
}

.listingform .listingform__input,
.listingform .listingform__textarea,
.listingform .listingform__select {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #fff;
  color: black !important;
  outline: none;
  transition: border-color 0.2s ease;
}

.listingform .listingform__input:focus,
.listingform .listingform__textarea:focus,
.listingform .listingform__select:focus {
  /*border-color: #0066ff;*/
}

.listingform .listingform__textarea {
  resize: none;
  min-height: fit-content;
  /*font-family: sans-serif;*/
  font-size: 14px;
}

.listingform .listingform__hint {
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
}

/* Checkboxes / Radios */
.listingform .listingform__checkboxes label {
  margin-right: 16px;
  font-size: 14px;
  color: #334155;
}

/* Upload */
.listingform .listingform__upload {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.listingform .listingform__dropzone {
  flex: 1;
  border: 2px dashed #94a3b8;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #475569;
  background: #f8fafc;
}

.listingform .listingform__browse {
  background: #0066ff;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.listingform .listingform__browse:hover {
  background: #0052cc;
}

/* Actions */
.listingform .listingform__actions {
  text-align: center;
  margin-top: 30px;
}

.listingform .listingform__submit {
  background: #0066ff;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.listingform .listingform__submit:hover {
  background: #0052cc;
  transform: translateY(-2px);
}

.howitworks {
  /*font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;*/
  background: #f9fbff;
  padding: 48px 16px;
  color: #0f172a;
}

.howitworks .howitworks__container {
  /*max-width: 1000px;*/
  margin: 0 auto;
}

.howitworks .howitworks__title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 36px 0;
  color: #071433;
}

.howitworks .howitworks__highlight {
  color: #0066ff;
}

/* Steps layout */
.howitworks .howitworks__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.howitworks .howitworks__step {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #eef4ff;
  border-radius: 10px;
  padding: 18px;
  gap: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.howitworks .howitworks__step:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(0,102,255,0.08);
}

/* Step number */
.howitworks .howitworks__number {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #0066ff;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 2px 6px rgba(0,102,255,0.2);
}

.howitworks .howitworks__content {
  flex: 1;
}

.howitworks .howitworks__step-title {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: #12203a;
}

.howitworks .howitworks__step-text {
  margin: 0;
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .howitworks .howitworks__steps {
    grid-template-columns: 1fr;
  }
}

/* CSS — put in your stylesheet (all rules use the parent selector .mewps-hero) */
.mewps-hero {
  box-sizing: border-box;
  /*font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;*/
  padding: 28px 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  color: #0f1724;
}

.mewps-hero .mewps-hero__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Left column */
.mewps-hero .mewps-hero__left {
  flex: 1 1 520px;
  min-width: 280px;
}

.mewps-hero .mewps-hero__title {
  margin: 0 0 12px 0;
  /*font-size: 28px;*/
  line-height: 1.06;
  font-weight: 700;
  color: #071433;
}

.mewps-hero .mewps-hero__brand {
  color: #0167cb;
  background: linear-gradient(90deg, rgba(0,102,255,0.08), rgba(0,102,255,0.03));
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 800;
  margin-left: 6px;
}

/* Subtitle */
.mewps-hero .mewps-hero__subtitle {
  margin: 0 0 18px 0;
  color: #354052;
  font-size: 15px;
}

/* Feature list */
.mewps-hero .mewps-hero__features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px 18px;
}

.mewps-hero .mewps-hero__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #eef4ff;
  padding: 8px 10px;
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(15,20,36,0.02);
}

.mewps-hero .mewps-hero__feature-badge {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #e6f0ff;
  color: #0066ff;
  font-weight: 700;
  font-size: 14px;
}

.mewps-hero .mewps-hero__feature-text {
  font-size: 14px;
  color: #12203a;
}

/* CTAs */
.mewps-hero .mewps-hero__ctas {
  display: flex;
  gap: 10px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.mewps-hero .mewps-hero__btn {
  border: 0;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}

/*.mewps-hero .mewps-hero__btn--primary {
  background: #0066ff;
  color: white;
  box-shadow: 0 8px 24px rgba(0,102,255,0.14);
}*/

.mewps-hero .mewps-hero__btn--ghost {
  background: transparent;
  color: #0066ff;
  border: 1px solid #dbeafe;
}

/* Right column (visual) */
.mewps-hero .mewps-hero__right {
  flex: 0 0 260px;
  min-width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mewps-hero .mewps-hero__visual {
  width: 220px;
  height: 160px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
}

/* Repeated tagline (small) */
.mewps-hero .mewps-hero__repeat {
  margin-top: 14px;
  font-size: 13px;
  color: #6b7280;
}

/* Responsive tweaks */
@media (max-width: 880px) {
  .mewps-hero .mewps-hero__container { gap: 18px; }
  .mewps-hero .mewps-hero__title { font-size: 22px; }
  .mewps-hero .mewps-hero__right { order: -1; width: 100%; display: flex; justify-content: center; }
  .mewps-hero .mewps-hero__left { flex-basis: 100%; }
}

.review-container {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 50px;
    border: 2px solid rgb(46 78 154);
    padding: 50px 20px;
}
.review-container p {
    color: black;
    font-size: 20px;
}
.button-link:hover,
.button-link:focus {
  color: white !important;
}
.button-link {
    background-color: rgb(1, 21, 77);
    color: white;
    font-size: 16px;
    padding: 20px 50px;
    border-radius: 10px;
    font-weight: bold;
}
#why-professionals-choose-us p {
    font-size: 16px;
    color: black;
}
#home-global-marketplace .link a {
    background-color: black;
    color: white;
    padding: 20px 50px;
    border-radius: 10px;
    font-size: 16px;
}
#home-global-marketplace .link {
    text-align: center;
    margin-bottom: 100px;
}
#home-global-marketplace h2 {
    text-align: center;
}
#home-global-marketplace .section,
#why-professionals-choose-us .section {
    border: 1px solid red;
    padding: 50px 20px;
    height: 100%;
}
#home-global-marketplace ul {
    margin-bottom: 50px;
}
#home-global-marketplace ul li span {
    color: black;
    font-size: 16px;
}
#home-global-marketplace ul li img {
    width: 25px;
    margin-right: 10px;
}
.font16 {
  font-size: 16px !important;
}
