body {
  font-family: "Inter", sans-serif !important;
  box-sizing: border-box;
  margin: 0%;
  padding: 0%;
}
.o2b-location-page {
  --o2b-bg: #f2f5fc;
  --o2b-white: #ffffff;
  --o2b-heading: #1f2937;
  --o2b-text: #4b525f;
  --o2b-primary: #0875fe;
  --o2b-primary-dark: #005ed6;
  --o2b-blue-soft: #e8f0ff;
  --o2b-purple: #2b114f;
  --o2b-purple-light: #5352e0;
  --o2b-border: #dfe1eb;
  --o2b-green: #14a35b;
  --o2b-green-bg: #dff8e9;

  font-family: inherit;
  color: var(--o2b-heading);
  background: var(--o2b-white);
}

.o2b-hero {
  padding: 85px 0 70px;
  background: var(--o2b-bg);
  overflow: hidden;
}

.o2b-herogrid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.o2b-badge,
.o2b-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  border-radius: 20px;
  background: var(--o2b-blue-soft);
  color: #356de8;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.o2b-badge span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #5598ff;
  color: #ffffff;
  display: inline-grid;
  place-items: center;
  font-size: 10px;
}

.o2b-hero h1 {
  margin: 0 0 24px;
  font-size: 3.5rem;
  line-height: 1.08;
  letter-spacing: 0.2;
  color: var(--o2b-heading);
  font-weight: 800;
  font-family: "Manrope", sans-serif;
}

.o2b-hero h1 span {
  color: var(--o2b-primary);
}

.o2b-hero p {
  max-width: 650px;
  color: var(--o2b-text);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.5px;
}

.o2bbtnwrap {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.o2bbtnwrap.center {
  justify-content: center;
}

.o2bbtn {
  padding: 10px 15px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.o2bbtnprimary {
  background: var(--o2b-primary);
  color: #ffffff;
  border: 2px solid var(--o2b-primary);
}

.o2bbtnprimary:hover {
  background: var(--o2b-primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
  text-decoration: none;
}

.o2bbtnoutline {
  background: transparent;
  color: var(--o2b-primary);
  border: 2px solid var(--o2b-primary);
}

.o2bbtnoutline:hover {
  background: var(--o2b-primary);
  color: #ffffff;
  transform: translateY(-2px);
  text-decoration: none;
}

.o2bbtnwhite {
  background: #0048ff;
  color: white;
  border: 2px solid #ffffff;
  text-decoration: none;
}
.o2bbtnwhite:hover {
  background: #0037c2;
  color: white;
  text-decoration: none;
}

.o2bbtntransparent {
  background: transparent;
  color: #0044ff;
  border: 2px solid rgba(201, 214, 255, 0.7);
  text-decoration: none;
}

.o2bbtntransparent:hover {
  background: #ffffff;
  color: var(--o2b-primary);
  border: 2px solid var(--o2b-primary);
  text-decoration: none;
}

.o2b-stats-list {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--o2b-border, #e3eaef);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.o2b-stats-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-tick {
  width: 24px;
  height: 24px;
  background-color: #dcfce7;
  color: #168b48;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.stats-text {
  color: var(--o2b-heading, #212529);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.stats-text strong {
  font-weight: 700;
  color: #09205c;
}

.o2b-visual-wrap {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.o2b-visual-wrap img {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 40px;
}

@media (max-width: 991px) {
  .o2b-hero {
    padding: 70px 0 60px;
  }

  .o2b-herogrid,
  .o2b-two-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .o2b-hero-content {
    order: 1;
  }

  .o2b-visual-wrap {
    order: 2;
  }

  .o2b-hero h1 {
    font-size: 3rem;
  }

  .o2b-hero p {
    max-width: 100%;
    margin: 0 auto 20px;
  }

  .o2bbtnwrap {
    justify-content: center;
  }

  .o2b-stats-list {
    max-width: 700px;
    margin: 30px auto 0;
  }

  .o2b-card-grid,
  .o2b-service-grid,
  .o2b-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .o2b-visual-wrap img {
    max-width: 420px;
  }
}

@media (max-width: 767px) {
  .o2b-hero {
    padding: 60px 0 50px;
  }

  .o2b-herogrid {
    gap: 30px;
  }

  .o2b-badge,
  .o2b-subtitle {
    font-size: 13px;
  }

  .o2b-hero h1 {
    font-size: 2.3rem;
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .o2b-hero p {
    font-size: 15px;
    line-height: 1.7;
  }

  .o2bbtnwrap {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .o2bbtn {
    width: 100%;
  }

  .o2b-stats-list {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: left;
  }

  .o2b-visual-wrap img {
    max-width: 350px;
  }

  .o2b-card-grid,
  .o2b-service-grid,
  .o2b-benefit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .o2b-hero {
    padding: 50px 0 40px;
  }

  .o2b-badge,
  .o2b-subtitle {
    font-size: 12px;
    padding: 5px 10px;
  }

  .o2b-hero h1 {
    font-size: 1.9rem;
    line-height: 1.25;
  }

  .o2b-hero p {
    font-size: 14px;
  }

  .o2b-stats-item {
    gap: 10px;
  }

  .stats-text {
    font-size: 14px;
  }

  .o2b-visual-wrap img {
    max-width: 100%;
    border-radius: 20px;
  }
}

@media (max-width: 380px) {
  .o2b-hero h1 {
    font-size: 1.7rem;
  }

  .o2bbtn {
    font-size: 14px;
    padding: 10px 14px;
  }

  .stats-text {
    font-size: 13px;
  }
}

.o2b-content-section {
  padding: 50px 0;
  background: #ffffff;
}

.o2b-content-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 999px;
  background: #edf4ff;
  color: #0b72ff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
}
.o2b-divider {
  width: 100%;
  height: 1px;
  margin: 38px 0;
  background: linear-gradient(to right, transparent, #d7e4ff, transparent);
}
.o2b-benefits-list div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.o2b-tick {
  min-width: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #00a055c1;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
.o2b-benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.o2b-benefits-list div {
  padding: 14px 18px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #dbe7ff;
  color: #111827;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  box-shadow: 0 8px 20px rgba(31, 41, 55, 0.04);
  transition: all 0.3s ease;
}

.o2b-benefits-list div:hover {
  transform: translateY(-4px);
  border-color: #0b72ff;
  box-shadow: 0 14px 35px rgba(11, 114, 255, 0.12);
}

@media (max-width: 991px) {
  .o2b-content-box {
    padding: 42px;
  }

  .o2b-content-box h2 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .o2b-content-section {
    padding: 60px 0;
  }

  .o2b-content-box {
    padding: 30px 24px;
    border-radius: 22px;
  }

  .o2b-content-box h2 {
    font-size: 34px;
  }

  .o2b-content-box h3 {
    font-size: 26px;
  }

  .o2b-content-box p {
    font-size: 15px;
    line-height: 1.8;
  }

  .o2b-benefits-list {
    gap: 12px;
  }

  .o2b-benefits-list div {
    width: 100%;
  }
}
.odoo-partner-section {
  padding: 60px 0;
  background-color: #f9fbfd;
}

.sub-heading {
  color: #007bff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 10px;
}

.odoo-partner-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 15px;
}

.description {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 25px;
}

.list-title {
  font-size: 20px;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 15px;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #495057;
  line-height: 1.5;
}

/* Adds a nice clean bullet checkmark */
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #28a745;
  font-weight: bold;
}

.rounded-shadow {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.rounded-shadow:hover {
  transform: translateY(-5px);
}
.o2b-app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.o2b-app-grid span {
  min-height: 42px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #edf0f7;
  font-size: 10px;
  color: #596579;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 5px;
  box-shadow: 0 5px 12px rgba(31, 41, 55, 0.08);
}

.o2b-float-card {
  position: absolute;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 18px 40px rgba(31, 41, 55, 0.18);
  z-index: 5;
}

.o2b-float-card span {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--o2b-green-bg);
  color: var(--o2b-green);
  font-weight: 900;
}

.o2b-float-card small {
  display: block;
  color: var(--o2b-text);
  font-size: 13px;
  margin-bottom: 4px;
}

.o2b-float-card strong {
  display: block;
  color: var(--o2b-heading);
  font-size: 21px;
}

.o2b-efficiency {
  left: 20px;
  top: 25px;
}

.o2b-users {
  right: 10px;
  bottom: 34px;
}

.o2b-section {
  padding: 40px 0;
  background: #ffffff;
}

.o2b-section-head {
  max-width: 900px;
  margin-bottom: 30px;
}

.o2b-section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.o2b-section-head h2 {
  margin: 0 0 16px;
  color: var(--o2b-heading);
  font-size: 2.3rem;
  line-height: 1.18;
  font-weight: 600;
}

.o2b-section-head p {
  margin: 0;
  color: var(--o2b-text);
  font-size: 15px;
  line-height: 1.7;
}

.o2b-two-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.o2b-content-box,
.o2b-keyword-box,
.o2b-card,
.o2b-service-card {
  background: #ffffff;
  border: 1px solid var(--o2b-border);
  border-radius: 18px;
  padding: 18px;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(31, 41, 55, 0.06);
}

.o2b-content-box h3,
.o2b-keyword-box h3,
.o2b-card h3,
.o2b-service-card h3 {
  margin: 0 0 12px;
  color: var(--o2b-heading);
  font-size: 18px;
  font-weight: 800;
}

.o2b-content-box p,
.o2b-keyword-box p,
.o2b-card p,
.o2b-service-card p {
  margin: 0;
  color: var(--o2b-text);
  line-height: 1.7;
  font-size: 15px;
}

.o2b-keyword-box p + p {
  margin-top: 12px;
}
.o2b-card-grid,
.o2b-service-grid,
.o2b-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.o2b-card,
.o2b-service-card {
  transition: all 0.25s ease;
}

.o2b-card:hover,
.o2b-service-card:hover {
  transform: translateY(-6px);
  border-color: #9cc7ff;
  box-shadow: 0 24px 55px rgba(8, 117, 254, 0.12);
  text-decoration: none;
}

.o2b-service-card span {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--o2b-blue-soft);
  color: var(--o2b-primary);
  display: grid;
  place-items: center;
  font-weight: 800;
}

@media (max-width: 991px) {
  .o2b-card-grid,
  .o2b-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .o2b-card-grid,
  .o2b-service-grid {
    grid-template-columns: 1fr;
  }
}
.o2b-pill-grid,
.o2b-city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.o2b-pill-grid a,
.o2b-city-grid a {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 50px;
  background: #ffffff;
  border: 1px solid var(--o2b-border);
  color: var(--o2b-heading);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.o2b-pill-grid a:hover,
.o2b-city-grid a:hover {
  background: linear-gradient(135deg, rgb(223, 250, 255), rgb(211, 211, 255));
  border-color: rgb(192, 225, 254);
  text-decoration: none;
}
.o2b-benefits {
  background:
    radial-gradient(
      circle at right,
      rgba(175, 175, 255, 0.445),
      transparent 30%
    ),
    linear-gradient(135deg, #09205c, #125593);
  padding: 60px 0;
}

.o2b-section-head.center {
  text-align: center;
  margin-bottom: 40px;
}

.o2b-benefits h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.o2b-section-desc {
  color: #afe3ff !important;
  font-size: 16px;
  margin: 0;
}

.o2b-subtitle.dark {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 15px;
}

/* Beautiful 3-Column Layout for the list */
.o2b-benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.o2b-benefit-list li {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  position: relative;
  padding-left: 45px;
  display: flex;
  align-items: center;
}

/* Adds a nice clean custom bullet checkmark inside the boxes */
.o2b-benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 20px;
  color: #afe3ff;
  font-weight: bold;
  font-size: 18px;
}

/* Responsive adjustment for tablets */
@media (max-width: 991px) {
  .o2b-benefit-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive adjustment for mobile phones */
@media (max-width: 767px) {
  .o2b-benefit-list {
    grid-template-columns: 1fr;
  }
}
.o2b-cta {
  width: 900px;
  margin: auto;
  padding: 42px 0;
  text-align: center;
  color: #000000;
  border-radius: 20px;
  border: 1px solid lightblue;
  background-color: #f1fcff;
}

.o2b-cta h2 {
  margin: 0 0 16px;
  font-size: 2rem;
  line-height: 1.15;
  color: #000000;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.o2b-cta p {
  max-width: 780px;
  margin: 0 auto 28px;
  color: #5c5e63;
  font-size: 18px;
  line-height: 1.7;
}
@media (max-width: 991px) {
  .o2b-cta {
    width: 90%;
    padding: 40px 25px;
  }

  .o2b-cta h2 {
    font-size: 1.8rem;
  }

  .o2b-cta p {
    font-size: 16px;
    line-height: 1.6;
  }
}

@media (max-width: 767px) {
  .o2b-cta {
    width: 100%;
    padding: 35px 20px;
    border-radius: 16px;
  }

  .o2b-cta h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .o2b-cta p {
    font-size: 15px;
    margin-bottom: 22px;
  }
}

@media (max-width: 480px) {
  .o2b-cta {
    padding: 30px 16px;
    border-radius: 14px;
  }

  .o2b-cta h2 {
    font-size: 1.3rem;
  }

  .o2b-cta p {
    font-size: 14px;
    line-height: 1.6;
  }
}
.faq-wd {
  max-width: 900px;
  margin: 0 auto;
}

.o2b-section-head {
  margin-bottom: 30px;
}

.o2b-subtitle {
  color: #007bff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.o2b-faq .cardd {
  margin-bottom: 10px !important;
  border: 1px solid #e3eaef;
  border-radius: 8px !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.o2b-faq .card-header {
  background-color: #ffffff !important;
  border-bottom: none !important;
  padding: 0 !important;
}

.o2b-faq .btn-link {
  color: #212529;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 20px;
  display: block;
  width: 100%;
  text-align: left;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.o2b-faq .btn-link:hover,
.o2b-faq .btn-link:focus {
  text-decoration: none;
  background-color: #f8f9fa;
  color: #007bff;
}

.o2b-faq .card-body {
  padding: 0 20px 20px 20px;
  background-color: #ffffff;
}

.o2b-faq .card-body p {
  color: #555555;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.faq-icon {
  font-size: 14px;
  color: #6c757d;
  transition: transform 0.3s ease;
}

.btn-link:not(.collapsed) .faq-icon {
  transform: rotate(-180deg);
  color: #007bff;
}

/* Isolated Container Section scoping */
.o2b-ptnr-section-wrapper {
  padding: 80px 0;
  background: #f8fbff;
}

.o2b-ptnr-subheading {
  font-size: 13px;
  font-weight: 700;
  color: #0d6efd;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 10px;
}

.o2b-ptnr-mainheading {
  color: #0f172a;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
  border-left: 4px solid #0d6efd;
  padding-left: 20px;
  margin-bottom: 20px;
}

.o2b-ptnr-desc {
  color: #64748b;
  font-size: 16px;
  padding-left: 24px;
  line-height: 1.6;
}

/* Prefix Guarded Grid Feature Elements */
.o2b-ptnr-feature-row-container {
  padding-left: 24px;
  margin-top: 30px;
}

.o2b-ptnr-grid-item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  transition: transform 0.2s ease;
}

.o2b-ptnr-grid-item:hover {
  transform: translateX(5px);
}

/* Isolated Custom Tick Badges */
.o2b-ptnr-tick-sphere {
  min-width: 28px;
  max-width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #0d6efd, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}

.o2b-ptnr-tick-sphere i {
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
}

.o2b-ptnr-tick-label {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}

/* Graphic Block Scope Isolation */
.o2b-ptnr-media-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}

.o2b-ptnr-isolated-img {
  width: 100%;
  max-width: 520px;
  border-radius: 30px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0px 15px 25px rgba(15, 23, 42, 0.08));
}

/* Overlapping Overlay Badge Block */
.o2b-ptnr-floating-overlay {
  position: absolute;
  top: 20px;
  right: 10px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 20px;
  z-index: 5;
  min-width: 250px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(13, 110, 253, 0.1);
  border-left: 5px solid #0d6efd;
}

.o2b-ptnr-overlay-icon-box {
  width: 42px;
  height: 42px;
  background-color: #e6f0ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.o2b-ptnr-overlay-icon-box i {
  color: #0d6efd;
  font-size: 20px;
}

.o2b-ptnr-overlay-text-line {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

/* Breakpoint Viewport Overrides */
@media (max-width: 991px) {
  .o2b-ptnr-mainheading {
    font-size: 28px;
  }
  .o2b-ptnr-floating-overlay {
    position: relative;
    top: 0;
    right: 0;
    margin: 0 auto 30px auto;
    display: flex !important;
    max-width: 320px;
  }
  .o2b-ptnr-media-frame {
    text-align: center;
    margin-top: 40px;
  }
}

.erp-partner-section {
  padding: 60px 0;
}

.erp-tagline {
  display: inline-block;
  background: rgba(47, 217, 247, 0.08);
  color: #2f9df7;
  padding: 6px 10px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.erp-main-heading {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 25px;
  line-height: 1.3;
}

.erp-sub-heading {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 18px;
  line-height: 1.4;
}

.erp-description {
  font-size: 15px;
  line-height: 1.9;
  color: #4b5563;
  margin-bottom: 20px;
}

.erp-divider {
  width: 100%;
  height: 1px;
  background: #e5e7eb;
  margin: 25px 0;
}

.erp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 35px;
  margin-top: 15px;
}

.erp-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f9fafb;
  padding: 8px 10px;
  border-radius: 14px;
  transition: all 0.3s ease;
  border: 1px solid #edf0f5;
}

.erp-benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  background: #ffffff;
}

.erp-check-icon {
  min-width: 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7b2ff7, #00c6ff);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}

.erp-benefit-item span:last-child {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
  font-weight: 500;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .erp-content-wrapper {
    padding: 45px 35px;
  }

  .erp-main-heading {
    font-size: 34px;
  }

  .erp-sub-heading {
    font-size: 26px;
  }

  .erp-benefits-grid {
    gap: 18px;
  }
}

@media (max-width: 767px) {
  .erp-partner-section {
    padding: 60px 0;
  }

  .erp-content-wrapper {
    padding: 35px 22px;
    border-radius: 18px;
  }

  .erp-main-heading {
    font-size: 28px;
  }

  .erp-sub-heading {
    font-size: 22px;
  }

  .erp-description {
    font-size: 15px;
    line-height: 1.8;
  }

  .erp-benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .erp-benefit-item {
    padding: 16px;
  }
}
