body { 
    background: #325F7D;
    margin: 0;
} 
.carousel-wrapper {
  max-width: 100vw;
  margin: 00px auto;
  padding: 0 0px;
}

.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 20 / 9;
  overflow: hidden;
}

.track {
  display: flex;
  width: 400%; 
  height: 100%;
  transition: transform 0.5s ease;
}

.slide {
  width: 25%; /* 100% / 4 slides */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.slide-1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.slide-2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.slide-3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.slide-4 { background: linear-gradient(135deg, #43e97b, #38f9d7); }

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
}

.arrow-left { left: 12px; }
.arrow-right { right: 12px; }

.dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: white;
}
.WhoAreWe{
    padding: 5vw;
    background: #0A334E;
    border: 10px solid #0A334E;
    width: 45vw;
}
p{
    text-align: justify;
}
h1{
    text-align: center;
}
footer {
    color: white;
    text-align: center;
    margin-top: auto;
    padding: 10px;
}
