/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global */
body {
  font-family: "Roboto", Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
  padding-top: 70px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(90deg, #1e3c72, #2a5298);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.logo {
  width: 60px;
}

.header-right ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.header-right a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.header-right a:hover,
.header-right a.active {
  color: #ffdd57;
}

/* Banner */
.banner {
  height: 50vh;
  background: linear-gradient(
      rgba(30, 60, 114, 0.75),
      rgba(30, 60, 114, 0.75)
    ),
    url("img/photo_2026-01-23_13-55-11 (2).jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 1.2rem;
}

/* Sections */
.content-section {
  padding: 80px 60px;
}

.content-section.light {
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #1e3c72;
}

.section-text {
  max-width: 800px;
  margin: auto;
  text-align: center;
  font-size: 1.1rem;
  color: #555;
}

/* Process */
.process-steps {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.step {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.step:hover {
  transform: translateY(-6px);
}

.step h3 {
  color: #2a5298;
  margin-bottom: 10px;
}

/* Why Choose Us */
.services {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card h3 {
  color: #2a5298;
  margin-bottom: 10px;
}

/* Footer */
.footer {
  background: #1e3c72;
  color: #fff;
  text-align: center;
  padding: 30px 15px;
}

.social-links a {
  color: #ffdd57;
  font-size: 24px;
  margin: 0 10px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #fff;
}

.footer p {
  margin-top: 15px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .content-section {
    padding: 60px 20px;
  }

  .banner-content h1 {
    font-size: 2.2rem;
  }

  .banner-content p {
    font-size: 1rem;
  }
}
