.header {
  background-color: var(--background-accent);;
  min-height: 60px;
  padding: 10px 0;
  transition: 0.3s;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
  .about .container {
    margin-top: 100px;
  }

  .about h1 {
    color: var(--heading-color);
    font-size: 30px;
  }
  
  .about p {
    line-height: 1.7;
    color: var(--default-color);
    text-align: justify;
  }
  
  .about .section-subtitle {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    display: block;
    color: var(--default-color);
  }
  
  /*--------------------------------------------------------------
  # About 2 Section
  --------------------------------------------------------------*/
  .about-2 .content {
    background-color: var(--surface-color);
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .about-2 .content-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    display: block;
    color: var(--default-color);
  }

  .about-2 p {
    line-height: 1.7;
    color: var(--default-color);
  }
  
  .about-2 .lead {
    line-height: 1.6;
    font-size: 16px;
    text-align: justify;
    font-weight: normal;
    color: var(--default-color);
  }
  
  /*--------------------------------------------------------------
  # Services Section
  --------------------------------------------------------------*/
  .services {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  
  .services .content-title{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    display: block;
    color: var(--default-color);
  }

  .services .services-item .services-icon {
    color: var(--accent-color);
    margin-bottom: 20px;
  }
  
  .services .services-item .services-icon i {
    font-size: 48px;
  }
  
  .services .services-item h3 {
    font-size: 17px;
    font-weight: 400;
    color: var(--heading-color);
  }

/*--------------------------------------------------------------
# More Features Section
--------------------------------------------------------------*/
.more-features .features-image {
  position: relative;
  min-height: 400px;
}

.more-features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.more-features h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.more-features .icon-box {
  margin-top: 30px;
}

.more-features .icon-box i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 1.2;
}

.more-features .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.more-features .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}