.services-section {
  padding: 60px 0;
  background: #fff;
}
@media (min-width: 992px) {
  .services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    max-width: 1200px;
  }
  .services-grid > .service-card:nth-child(1),
  .services-grid > .service-card:nth-child(2) {
    grid-column: span 3;
    background: var(--soft-blue);
    border: none;
    padding: 40px;
  }
  .services-grid > .service-card:nth-child(1) .service-title,
  .services-grid > .service-card:nth-child(2) .service-title {
    font-size: 1.5rem;
  }
  .services-grid > .service-card:nth-child(3),
  .services-grid > .service-card:nth-child(4),
  .services-grid > .service-card:nth-child(5) {
    grid-column: span 2;
    background: #fff;
    border: 1px solid var(--border-color);
  }
}
.service-card {
  border-radius: 16px;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.why-us-section {
  padding: 60px 0;
  background: #fff;
}
@media (min-width: 992px) {
  .why-us-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .why-us-section .section-header {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    background: var(--primary-blue);
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    height: 100%;
  }
  .why-us-section .section-title {
    color: #fff;
    font-size: 2.5rem;
    margin-top: 0;
  }
  .why-us-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
  }
  .why-us-steps {
    display: contents;
  }
  .why-us-steps::before {
    display: none;
  }
  .step-item:nth-child(1) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  .step-item:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .step-item:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  .step-item {
    background: var(--soft-blue);
    border-radius: 20px;
    padding: 40px;
    align-items: flex-start;
    text-align: left;
    height: 100%;
    transition: all 0.3s ease;
  }
  .step-item:hover {
    background: #eef2f7;
  }
  .step-icon-wrapper {
    background: #fff;
    margin-bottom: 24px;
  }
}
@media (max-width: 991px) {
  .services-section {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .services-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 40px;
  }
  .service-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 12px 12px;
    align-items: center;
    align-content: start;
    text-align: left;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 16px !important;
    min-height: 0;
    flex: 0 0 auto !important;
    height: auto !important;
  }
  .services-grid > .service-card:nth-child(1),
  .services-grid > .service-card:nth-child(2) {
    background: var(--soft-blue);
    border: none;
    padding: 16px 16px !important;
  }
  .services-grid > .service-card:nth-child(1) .icon-circle,
  .services-grid > .service-card:nth-child(2) .icon-circle {
    background: #ffffff !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border: none;
  }
  .services-grid > .service-card:nth-child(odd) .icon-circle {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
  }
  .services-grid > .service-card:nth-child(odd) .service-title {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 600;
    width: auto;
  }
  .services-grid > .service-card:nth-child(even) {
    grid-template-columns: 1fr auto;
    text-align: right;
    justify-items: end;
  }
  .services-grid > .service-card:nth-child(even) .service-title {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 600;
    width: auto;
  }
  .services-grid > .service-card:nth-child(even) .icon-circle {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
  }
  .service-desc {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 0px;
    padding-top: 0;
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.4;
    width: 100%;
  }
  .why-us-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .step-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    background: var(--soft-blue);
    padding: 20px;
    border-radius: 12px;
    gap: 16px;
  }
  .step-icon-wrapper {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-bottom: 0;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
  }
  .step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-weight: 700;
    color: var(--primary-blue);
  }
  .step-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.4;
  }
}
