@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
  box-sizing: border-box;
  /*margin: 0;
  padding: 0;*/
  font-family: 'Open Sans', Helvetica, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 20px 0;
}

.header {
  background: #0f2533;
  text-align: center;
}

.banner {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  padding-bottom: 10px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #1fa3d6, #0f2533);
  border-radius: 3px;
}

.about, .services, .contact {
  padding: 40px 0;
  text-align: center;
}

.about h1 {
  margin-bottom: 20px;
  color: #0f2533;
}

.services ul {
  list-style: none;
  margin-top: 20px;
  padding: 0;
  margin: 0;
}

.services li {
  margin: 10px 0;
}

.contact a {
  color: #0f2533;
  font-weight: bold;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.phone {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.footer {
  background: #0f2533;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 30px;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .about h1 {
    font-size: 1.5rem;
  }

  .phone {
    font-size: 1.2rem;
  }
}
