/* Styles specific to About Us page - image/text mixed layout */

/* Load local fonts from fonts/ directory */
@font-face{
  font-family: 'shouyi_text';
  src: url('../fonts/1.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: 'shouyi_italic';
  src: url('../fonts/3.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: 'shouyi_title';
  src: url('../fonts/4.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


.services-title {
    font-family: shouyi_title, auto;
    line-height: 32px;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    list-style-type: none;
    font-size: 32px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    font-kerning: none;
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
}
.services-bold{
    font-family: shouyi_text, auto;
    font-size: 17.33px;
    line-height: 30px;
    font-weight: 700;
    
}

.services-content{
    font-family: shouyi_text, auto;
    font-size: 17.33px;
    line-height: 30px;
    
}

.services-sub-title {
  font-family: shouyi_text, auto;
  font-size: 26px;
  margin-top: 20px;
}

.services-box {
    margin-top: 40px;
}
.services-item-box {
    display: flex;
    margin-top: 20px;
    margin-bottom: 80px;
}

.left-part{
    flex:0 0 10%
}
.s-logo{
    width: 70%;
}

@media (max-width:900px){
  /* Hide service logos on small screens to reduce visual clutter */
  .s-logo{display:none!important}
  /* Ensure left-part doesn't reserve space when logo is hidden */
  .left-part{flex:0 0 auto}
}