body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(120deg, #eaf6fb 0%, #f5f5f5 100%);
    min-height: 100vh;
}
.about-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  width: 85%;
  max-width: 1200px;
  margin: 48px auto 32px auto;
  gap: 36px;
  background: linear-gradient(120deg, #fafdff 0%, #eaf6fb 100%);
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(14, 121, 178, 0.10), 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #eaf6fb;
  padding: 32px 24px;
}

.about-container,
.about-image-container {
  flex: 1 1 400px;
  min-width: 280px;
  box-sizing: border-box;
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-image-container {
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}

.about-image-container img {
  max-width: 340px;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 4px solid #eaf6fb;
  box-shadow: 0 8px 32px rgba(14, 121, 178, 0.18), 0 2px 8px rgba(0, 0, 0, 0.10);
  transition: transform 0.3s, box-shadow 0.3s;
  background: linear-gradient(135deg, #eaf6fb 0%, #f5f5f5 100%);
  margin: 0 auto;
  display: block;
}

.about-image-container img:hover {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 16px 48px rgba(14, 121, 178, 0.22), 0 4px 16px rgba(0, 0, 0, 0.13);
}

@media (max-width: 100%) {
  .about-main {
    flex-direction: column;
    gap: 20px;
    margin: 20px;
    padding: 10px 10px;
  }

  .about-container,
  .about-image-container {
    padding: 20px 10px;
  }
}

.about-container {
  background-color: rgb(14, 121, 178);
  color: white;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;

}

img {
  max-width: 100%;
  height: 100%;
}