/* GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #2B2B2B;
  background: #F3FBF6;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  background: #FFFFFF;
  padding: 20px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #1F3C88;
}

.nav-links a {
  margin-left: 20px;
  color: #2B2B2B;
  text-decoration: none;
}

.nav-links a:hover {
  color: #4CAF50;
}

/* SERVICES */
.services {
  padding: 80px 0;
}

.services-title {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  color: #1F3C88;
  margin-bottom: 20px;
}

.services-intro {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* SERVICE CARD */
.service-card {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border-left: 5px solid #4CAF50;
}

.service-card h2 {
  font-family: 'Poppins', sans-serif;
  color: #1F3C88;
  margin-bottom: 15px;
}

.service-card ul,
.service-card ol {
  padding-left: 20px;
}

.service-card li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.service-list span {
  display: block;
  font-size: 14px;
  color: #6B7280;
}

/* GALLERY */
.gallery-section {
  margin-top: 50px;
}

.gallery-section h2 {
  font-family: 'Poppins', sans-serif;
  color: #1F3C88;
  margin-bottom: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

/* FOOTER */
.footer {
  background: #162447;
  color: #FFFFFF;
  padding: 30px 0;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .services-title {
    font-size: 28px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }
}