body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 80px 20px;
  background: linear-gradient(to bottom, #002E5D, #2774ae);
  color: #fff;
  height: auto;
  line-height: 1.6;
}

.container {
  color: #111;
  padding: 30px;
  display: flex;
  height: auto;
  max-width: 1000px;
  margin: 40px auto;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar {
  width: 30%;
  background-color: #2c3e50;
  color: white;
  padding: 30px;
  text-align: center;
  height: auto;
  max-width: 300px;
  overflow: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
  
}

.img-cover {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  border: 3px solid white;
}

.img-logos {
  width: 40px;
  height: auto;
  margin: 10px;

}

.sidebar h2 {
  margin-top: 10px;
  font-size: 20px;
  overflow: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.sidebar h4 {
  margin-top: 10px;
  font-size: 16px;
  overflow: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.sidebar p {
  font-size: 14px;
  margin: 5px 0;
}

h1, h2, h3, h5, h4 {
  text-align: center;
}

.tabs {
  display: flex;
  justify-content: center;
}

.tab-btn {
  padding: 10px 20px;
  margin: 0 5px;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  height: auto;
}

.tab-btn.active {
  background: #007BFF;
  color: white;
}

.content-section {
  display: block;
  height: auto;
  width: 70%;
  padding: 30px;
  max-width: 700px;
  overflow: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hidden {
  display: none;
}