body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f5f6fa;
}

.header {
  background-color: rgba(0, 0, 0, 0.8);
}

.footer {
  --background-color: #000910;
  --default-color: #ffffff;
}

#politique {
  padding-top: 100px;
}

/* Container */
.container-politique {
  display: flex;
  max-width: 1200px;
  margin: 50px auto;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  gap: 0;
}

/* LEFT MENU */
.sidebar {
  width: 25%;
  min-width: 250px;
  background: #f0f2f5;
  padding: 30px 20px;
  border-right: 1px solid #e0e0e0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar li {
  padding: 12px 15px;
  margin-bottom: 8px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-align: left;
  color: #333;
  font-size: 14px;
  border-left: 3px solid transparent;
}

.sidebar li:hover {
  background: #e8ebf0;
  border-left-color: #a5191f;
  color: #a5191f;
}

.sidebar li.active {
  background: #e8ebf0;
  font-weight: 600;
  border-left-color: #a5191f;
  color: #a5191f;
}

/* RIGHT CONTENT */
.content {
  flex: 1;
  padding: 40px;
  overflow: visible;
}

.content-section {
  display: none;
  animation: fadeIn 0.3s ease-in;
}

.content-section.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.content h2 {
  color: #333;
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 20px;
  border-bottom: 2px solid #a5191f;
  padding-bottom: 10px;
}

.content h3 {
  color: #555;
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.content p {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
}

.content ul {
  margin: 10px 0 20px 0;
  padding-left: 20px;
}

.content li {
  color: #666;
  margin-bottom: 8px;
  line-height: 1.6;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
  font-size: 32px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container-politique {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px;
  }

  .sidebar ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .sidebar li {
    flex: 1;
    min-width: 150px;
    text-align: center;
  }

  .content {
    max-height: none;
  }
}