.sec1 {
  max-width: 1366px;
  background-color: #f5f5f5;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  margin: 200px auto;
  gap: 20px;
}

.profile-image {
  flex: 0 0 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-image img {
  width: 350px;
  height: 500px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #2b3ea9;
}

.content-section {
  flex: 1;
}

.sidebar {
  display: flex;
  border-radius: 10px 0 0 10px;
}

.sidebar .sidebarline {
  width: 20px;
  height: 80px;
  margin-right: 20px;
  background-color: #2b3ea9;
  color: #fff;
  border-radius: 10px 10px;
  /* display: flex;
            flex-direction: column;
            justify-content: center; */
}

.divider {
  width: 100%;
  height: 2px;
  margin: 30px 0;
  background-color: #7979792c;
}

h2 {
  font-size: 1.6em;
  font-weight: bold;
  margin: 0 0 10px;
  color: #2b3ea9;
}

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

.main-content {
  width: 70%;
  padding: 20px 0;
}

.main-content h3 {
  font-size: 1.2em;
  color: #333;
  margin: 0 0 10px;
}

.main-content p {
  font-size: 0.9em;
  color: #666;
  line-height: 1.6;
  margin: 0 0 10px;
}

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

  .profile-image {
    flex: 0 0 150px;
    margin-bottom: 20px;
  }

  .profile-image img {
    width: 120px;
    height: 120px;
  }

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

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

  .main-content {
    width: 100%;
    padding: 15px 0;
  }
}

@media (max-width: 480px) {
  .sidebar h2 {
    font-size: 1.2em;
  }

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

  .main-content h3 {
    font-size: 1em;
  }

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