/* ============================================= */
/*     Best Assignment Writers - Why Choose Us   */
/* ============================================= */

.baw-why-choose-section {
  padding: 3.5rem 1rem;
  background-color: #f8f9fc;
  color: #1a1a1a;
}

.baw-container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.baw-section-title {
  font-size: 2rem !important;
  font-weight: 700;
  color: var(--secondary-2);
  margin: 0 0 1.8rem;
  line-height: 1.25;
  text-align: center;
}

.baw-why-content {
  font-size: 1rem !important;
  line-height: 1.68;
  color: #333;
}

.baw-paragraph {
  margin: 0 0 1.4rem;
}

.baw-highlight-text {
  font-size: 1.18rem;
  font-weight: 600;
  color: #c0392b;
  padding: 1rem;
  background: #fff5f5;
  border-left: 5px solid #e74c3c;
  border-radius: 4px;
  margin: 2rem 0;
}

.baw-services-highlight {
  font-weight: 600;
  color: #2c3e50;
}

/* ──────────────────────────────────────────────
   Responsive adjustments
─────────────────────────────────────────────── */

@media (min-width: 576px) {
  .baw-why-choose-section {
    padding: 5rem 1.5rem;
  }
  .baw-section-title {
    font-size: 2.3rem;
  }
}

@media (min-width: 768px) {
  .baw-why-content {
    font-size: 1.15rem;
    max-width: 90%;
    margin: 0 auto;
  }
  .baw-highlight-text {
    font-size: 1.28rem;
    padding: 1.4rem 1.8rem;
  }
}

@media (min-width: 992px) {
  .baw-why-choose-section {
    padding: 6.5rem 2rem;
  }
  .baw-section-title {
    font-size: 2.8rem;
  }
  .baw-why-content {
    font-size: 1.22rem;
    max-width: 820px;
  }
  .baw-highlight-text {
    font-size: 1.38rem;
  }
}





.baw-expert-services-section {
  padding: 4rem 1rem;
  background: #f9faff;
  color: #1e293b;
}

.baw-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.baw-main-title {
  font-size: 2rem !important;
  font-weight: 700;
  color: var(--secondary-2) !important;
  text-align: center;
  margin: 0 0 1.2rem;
  line-height: 1.2;
}

.baw-underline {
  position: relative;
  display: inline-block;
}

.baw-underline::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;          /* you can change color */
  border-radius: 2px;
}

.baw-intro-text {
  font-size: 1rem !important;
  line-height: 1.65;
  color: #475569;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem;
}

.baw-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.baw-service-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}

.baw-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  border-color: #c7d2fe;
}

.baw-service-card h3 {
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--secondary-2);
  margin: 0 0 1rem;
}

.baw-service-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

/* ─── Responsive ─────────────────────────────────────── */

@media (min-width: 640px) {
  .baw-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .baw-main-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 992px) {
  .baw-expert-services-section {
    padding: 6rem 2rem;
  }
  .baw-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .baw-service-card--wide {
    grid-column: span 3;
    max-width: 820px;
    margin: 1rem auto 0;
  }
  .baw-main-title {
    font-size: 2.9rem;
  }
  .baw-intro-text {
    font-size: 1.18rem;
  }
}








.baw-how-it-works-section {
  padding: 4rem 1rem;
  background: var(--secondary-1);           /* dark background to match your blue theme */
  color: var(--on-secondary);
  text-align: center;
}

.baw-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.baw-main-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
  line-height: 1.2;
  color: #e2e8f0 !important;
}

.baw-underline-accent {
  width: 120px;
  height: 5px;
  background: var(--primary-1);           /* accent underline */
  margin: 0 auto 3.5rem;
  border-radius: 3px;
}

.baw-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.baw-step-card {
  background: var(--secondary-1);           /* darker blue card */
  border-radius: 12px;
  padding: 2.5rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.baw-step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.baw-step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #6366f1;           /* accent color - indigo */
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 6px solid #0f172a;
  box-shadow: 0 4px 12px rgba(99,102,241,0.3);
}

.baw-step-card h3 {
  font-size: 1.45rem;
  font-weight: 600;
  margin: 1.8rem 0 1rem;
  color: #e2e8f0;
}

.baw-step-card p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #cbd5e1;
  margin: 0;
}

/* ─── Responsive ─────────────────────────────────────── */

@media (min-width: 640px) {
  .baw-steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
  }
  .baw-main-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 992px) {
  .baw-how-it-works-section {
    padding: 6rem 2rem;
  }
  .baw-main-title {
    font-size: 2.9rem;
  }
  .baw-step-card {
    padding: 3rem 2.2rem;
  }
  .baw-step-number {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
}







.bawz-2026-ger-assign-unique-difference-section {
  padding: 4rem 1rem;
  background: var(--secondary-1);
  color: #e2e8f0;
}

.bawz-2026-ger-assign-unique-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.bawz-2026-ger-assign-unique-main-title {
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: white;
}

.bawz-2026-ger-assign-unique-highlight-text {
  color: var(--primary-2);
}

.bawz-2026-ger-assign-unique-underline-accent {
  width: 100px;
  height: 5px;
  background: var(--primary-1);
  margin: 0 auto 2.5rem;
  border-radius: 3px;
}

.bawz-2026-ger-assign-unique-intro-paragraph {
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 960px;
  margin: 0 auto 3rem;
  text-align: center;
  color: #cbd5e1;
}

.bawz-2026-ger-assign-unique-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.bawz-2026-ger-assign-unique-feature-item {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: var(--primary-2);
  gap: 0.8rem;
}

.bawz-2026-ger-assign-unique-check-icon {
  font-size: 1.4rem;
  font-weight: bold;
}

/* Wide Services Block */
.bawz-2026-ger-assign-unique-wide-services-block {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 5rem;
  align-items: center;
}

.bawz-2026-ger-assign-unique-wide-title {
  font-size: 2rem;
  color: var(--primary-2);
  text-align: center;
  margin-bottom: 1.5rem;
}

.bawz-2026-ger-assign-unique-wide-content {
  max-width: 800px;
  text-align: center;
}

.bawz-2026-ger-assign-unique-wide-text {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.bawz-2026-ger-assign-unique-wide-image-wrapper {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.bawz-2026-ger-assign-unique-wide-image {
  width: 100%;
  height: auto;
  display: block;
}

.bawz-2026-ger-assign-unique-bottom-underline {
  width: 200px;
  height: 5px;
  background: var(--primary-1);
  margin: 4rem auto 0;
  border-radius: 3px;
}

/* Responsive */
@media (min-width: 640px) {
  .bawz-2026-ger-assign-unique-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bawz-2026-ger-assign-unique-main-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 992px) {
  .bawz-2026-ger-assign-unique-difference-section {
    padding: 6rem 2rem;
  }
  .bawz-2026-ger-assign-unique-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
  }
  .bawz-2026-ger-assign-unique-wide-services-block {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  .bawz-2026-ger-assign-unique-wide-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
  }
  .bawz-2026-ger-assign-unique-wide-title {
    text-align: left;
  }
  .bawz-2026-ger-assign-unique-wide-image-wrapper {
    flex: 1;
    max-width: 550px;
  }
  .bawz-2026-ger-assign-unique-main-title {
    font-size: 2.9rem;
  }
}