#network main .main_visual {
  background-image: url("../../img/who_we_are.jpg");
}

#network main p {
  line-height: 40px;
}

#network main .network-section__01 {
  margin-top: 4rem;
}

@media (max-width: 991px) {
  #network main p {
    line-height: 32px;
  }
}

.responsive-map-img{width:100%!important}
@media screen and (min-width:768px){.responsive-map-img{width:80%!important}}
@media screen and (min-width:1000px){.responsive-map-img{width:60%!important}}

.img-box-noe{margin:0 auto;}

/* Network lead text */
.network-lead {
  font-size: 15px;
  line-height: 26px;
  color: #555;
  margin-bottom: 1.5rem;
}

/* Office grid */
.office-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.office-card {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 1.2rem 1rem;
  border-left: 3px solid #ccc;
  transition: box-shadow 0.2s;
}

.office-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.office-card--hq {
  border-left-color: #DF0012;
  background: #fff5f5;
}

.office-card__country {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #333;
  margin-bottom: 0.4rem;
}

.office-card__name {
  font-size: 13px !important;
  line-height: 20px !important;
  color: #555;
  margin-bottom: 0.25rem;
}

.office-card__detail {
  font-size: 13px !important;
  line-height: 20px !important;
  color: #777;
  margin-bottom: 0.25rem;
}

.office-card__tel {
  font-size: 13px !important;
  line-height: 20px !important;
  color: #999;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .office-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .office-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .office-card {
    padding: 1rem 0.8rem;
  }
}

@media (max-width: 575px) {
  .office-grid {
    grid-template-columns: 1fr;
  }
}

