.container {
  max-width: 1366px;
  gap: 40px;
}

.header {
  text-align: center;
  margin: 40px;
}

.header p {
  font-size: 1em;
  margin-top: 20px;

}

.contentSection {
  margin-top: 100px;
  display: flex;
  width: 100%;
}

.text-content {
  flex: 1;
  width: 8%;
  padding-right: 20px;
}

.text-content h1 {
  text-align: center;
  font-size: 1.3em;
  color: #333;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 1em;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.image-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.approcahContent {
  display: flex;
  width: 100%;
}

.approach-section {
  margin: 40px 0;
  margin-top: 50px;
  width: 100%;
}

.sidebar {
  width: 20px;
  background-color: #2b3ea9;
  color: #fff;
  border-radius: 10px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.approach-sidebar {
  width: 100%;
  padding: 20px;
  border-radius: 10px 0 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.approach-sidebar h1 {
  font-size: 1.5em;
  margin: 0 0 20px;
}

.approach-sidebar p {
  font-size: 0.9em;
  line-height: 1.6;
  margin: 0;
}

.approach-content {
  flex: 1;
  padding: 20px;
  text-align: center;
  position: relative;
  margin: 100px auto;
}

.approach-content h2 {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 20px;
}


.theme-card {
  position: relative;
  text-align: center;
}

.theme-card img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.theme-card p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1em;
  color: #fff;
  margin: 0;
  padding: 0;
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.theme-card {
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  padding: 10px;
}

.theme-card img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}

.theme-card p {
  font-size: 1.5em;
  font-weight: bold;
  color: #fff;
  margin: 0px 0 0;
  padding: 0px;
  border-radius: 0 0 10px 10px;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 20px;
    width: 90%;
  }

  .contentSection {
    flex-direction: column;
  }

  .text-content {
    padding-right: 0;
    width: 100%;
  }

  .image-content img {
    margin-top: 20px;
  }

  .approach-section {
    flex-direction: column;
  }

  /* .approach-sidebar {
                width: 100%;
                border-radius: 10px 10px 0 0;
            } */

  .themes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .text-content h1 {
    font-size: 1.2em;
  }

  .text-content p {
    font-size: 0.8em;
  }

  .approach-sidebar h1 {
    font-size: 1.2em;
  }

  .approach-sidebar p {
    font-size: 0.8em;
  }

  .approach-content h2 {
    font-size: 1em;
  }

  .theme-card p {
    font-size: 0.9em;
  }

}

.theme-card {
  transition: transform 0.3s ease;
}
.theme-card:hover {
  transform: translateY(-5px);
}

.theme-card img {
  transition: transform 0.4s ease;
}

.theme-card:hover img {
  transform: scale(1.05);
}