body {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    margin: 0;
  }
  
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    box-sizing: border-box;
  }
  
  #page-logo a {
    padding: 10px;
    font-family: "Helvetica", sans-serif;
    color: #fff;
    font-size: 50px;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgb(0, 0, 0);
  }
  
  header a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 12px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    text-decoration: none;
  }
  
  header nav a:hover {
    color: #fff;
    background-color: #1da1fd;
  }

  header ul {
    display: flex;
  }
  
  header li {
    margin-left: 20px;
  }
  
  footer {
    font-family: "Montserrat", sans-serif;
    background: linear-gradient(70deg, rgb(24, 24,24), rgb(25, 29, 29));
    padding: 36px 0;
  }
  
  footer ul {
    display: flex;
    justify-content: center;
    /* padding: 40px; */
  }
  
  footer li {
    width: 80px;
    height: 80px;
    margin: 0 50px;
  }
  
  footer img {
    width: 100%;
    height: 100%;
  }

  .services-section {
  padding: 100px 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h1 {
  font-size: 36px;
  color: #0d3b66;
  margin-bottom: 10px;
}

.section-header p {
  color: #555;
  font-weight: 400;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service-content h2 {
  margin-top: 0;
  color: #0d3b66;
}

.service-content p {
  color: #555;
  font-weight: 400;
}

/* CTA */
.cta-section {
  background: #0d3b66;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #1da1fd;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: white;
  color: #0d3b66;
}