.container {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #2381c1;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  margin-bottom: 20px;
}

.left-panel {
  flex: 1;
  color: white;
}

.left-panel h2 {
  font-size: 28px;
  margin-bottom: 30px;
  text-align:center;
}
.para{
  text-align: justify;
}
.promoter {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.promoter-item {
  text-align: center;
}

.promoter-item img {
  max-width: 250px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.right-panel {
  flex: 1;
  text-align: left;
}

.right-panel h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.right-panel img {
  max-width: 80%;
  height: 40vh;
}

@media (max-width: 768px) {
.container {
flex-direction: column;
padding: 20px;
}

.left-panel, .right-panel {
text-align: center;
padding: 10px 0;
}

.right-panel img {
height: auto;
max-width: 90%;
}

.left-panel h2, .right-panel h2 {
font-size: 24px;
}

.promoter-item img {
max-width: 200px;
}
}