body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8fbff;
  color: #1e3a8a;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.navbar {
  background: #fffafa;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.navbar nav {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.navbar a {
  margin-left: 40px;
  text-decoration: none;
  color: #1e3a8a;
}

.btn-nav {
  background: #3b82f6;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
}

.small-hero {
  background: linear-gradient(to right, #e0f2fe, #f8fbff);
  text-align: center;
  padding: 80px 20px;
  border-radius: 0 0 40px 40px;
}

.small-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.small-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
  color: #555;
}

.mission {
  padding: 60px 0;
}

.mission h2 {
  color: #1e3a8a;
  margin-bottom: 10px;
}

.mission p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.mission .split-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.mission .split-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

.mission .split-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(59,130,246,0.25), transparent);
  border-radius: 20px;
}

.values {
  text-align: center;
  padding: 60px 0;
}

.values h2 {
  margin-bottom: 40px;
}

.values .cards {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.values .card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  flex: 1;
  text-align: center;
  transition: transform 0.3s ease;
}

.values .card i {
  font-size: 40px;
  color: #3b82f6;
  margin-bottom: 15px;
}

.values .card:hover {
  transform: translateY(-10px);
}

.values p{
  line-height: 25px;
}

.process {
  padding: 60px 0;
}

.process h2 {
  text-align: center;
  margin-bottom: 30px;
}

.process ol {
  list-style-position: inside;   
  text-align: left;              
  max-width: 600px;              
  margin: 0 auto;                
  padding-left: 210px;                  
  line-height: 1.8;              
}

.process li {
  margin-bottom: 15px;
}

footer {
  text-align: center;
  padding: 20px;
  background: #e0f2fe;
}

.socials {
  margin-top: 15px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #e0f2fe;
  border-radius: 50%;
  color: #1e3a8a;
  font-size: 18px;
  transition: 0.3s;
}

.socials a:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .small-hero h1 {
    font-size: 36px;
  }

  .split-grid {
    grid-template-columns: 1fr; 
    text-align: center;
  }

  .values .cards {
    flex-wrap: wrap; 
  }
}

@media (max-width: 768px) {
  .nav-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .navbar nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .navbar a {
    margin: 8px 0;
    padding: 10px;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    background: #f8fbff;
  }

  .btn-nav {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .small-hero h1 {
    font-size: 28px;
  }

  .small-hero p {
    font-size: 15px;
  }

  .values .cards {
    flex-direction: column;
    align-items: center;
  }

  .values .card {
    width: 100%;
    max-width: 400px;
  }

  .process ol {
    padding-left: 0;   
    text-align: left;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;  
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #1e3a8a; 
  border-radius: 2px;
  transition: 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-toggle span {
  transition: 0.3s;
}

@media (max-width: 480px) {
  .nav-toggle {
      display: flex; 
  }

  .navbar nav {
    display: none; 
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
    background: #fffafa;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  .navbar nav.active {
    display: flex; 
  }

  .nav-flex {
    padding: 15px;
  }

  .navbar a {
    font-size: 16px;
    margin: 6px 0;
  }

  .btn-nav {
    font-size: 16px;
    padding: 10px;
  }

  .small-hero {
    padding: 40px 20px;
  }

  .small-hero h1 {
    font-size: 22px;
  }

  .small-hero p {
    font-size: 14px;
    line-height: 22px;
  }

  .values .card {
    padding: 15px;
  }

  .values .card i {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .process h2 {
    font-size: 20px;
  }

  .process ol {
    max-width: 100%;
    line-height: 1.6;
  }

  .socials a {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}
