body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.header {
    background: #35424a;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.logo img {
    width: 200px;
    padding: 10px;
    background-color: white;
}

.navigation {
    background-color: #35424a;
}

.navigation a {
    color: #ffffff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 700;
    padding: 10px;
}

.navigation a:hover {
    background-color: #35500a;
}

.hero {
    background: url('../img/hero-bg.jpg') no-repeat center center/cover;
    color: #ffffff;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.contact-info a {
    display: flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    background-color: #24388F;
    padding: 10px 20px;
    border-radius: 5px;
}

.contact-info a:hover {
    background-color: #F69B62;
}

.icon {
    margin-right: 10px;
    width: 20px;
}

.label {
  display: inline-block;
  font-size: 1.8rem;
  color: #24388F;
  font-family: 'Roboto';
  font-weight: 600;
}
.underlineLabel{
  width: 50%;
  height: 2px;
  background-color: #C27F6B;
}

.about, .services, .contact {
    padding: 25px 0;
}

.about h2, .services h2, .contact h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #35424a;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.about-img {
    min-width: 250px;
    max-height: 450px;
    max-width: 100%;
    border-radius: 10px;
}

.service-item {
    margin-bottom: 20px;
}

.service-item h3 {
    color: #35424a;
}

.service-item p {
    text-align: justify;
}

.footer {
    background: #35424a;
    color: #ffffff;
    padding: 30px 0;
    text-align: center;
}

.footer-social a {
    color: #ffffff;
    display: inline-block;
    margin: 10px;
    text-decoration: none;
}

.footer-social .icon {
    width: 25px;
    margin-right: 5px;
    margin-bottom: -5px;
}
.maps{
  padding: 20px;
  width: 100%;
  height: 400px;
  border-radius: 4px;
}

@media (max-width: 768px) {

  .maps {
    padding: 10px 4px;
    width: 100%;
    height: 400px;
    border-radius: 4px;
  }

  .contact-info {
      list-style: none;
      display: inline-block;
      padding: 0px;
  }

  .contact-info a{
      width: 100%;
      margin-top: 10px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .about, .services, .contact {
        padding: 10px 0;
    }
}