* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
  color: #1e293b;
}

.container {
  max-width: 1100px;
  margin: auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.header {
  background: linear-gradient(135deg, #0f172a, #2563eb);
  color: #fff;
  text-align: center;
  padding: 35px 20px;
}

.header h1 {
  font-size: 34px;
  margin-bottom: 8px;
}

.header p {
  font-size: 18px;
  opacity: 0.9;
}

.content {
  padding: 30px;
}

.section {
  background: #f8fafc;
  padding: 25px;
  margin-bottom: 25px;
  border-left: 6px solid #2563eb;
  border-radius: 14px;
  transition: 0.3s;
}

.section:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.section h2 {
  color: #1d4ed8;
  margin-bottom: 15px;
  font-size: 24px;
}

.section p {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 12px;
}

.original-law {
  background: #fefce8;
  border: 2px solid #facc15;
  padding: 25px;
  border-radius: 14px;
  margin-bottom: 30px;
}

.original-law h2 {
  color: #b45309;
  margin-bottom: 18px;
}

.original-law p {
  font-size: 18px;
  line-height: 2;
}

.highlight {
  background: #dbeafe;
  color: #1e40af;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 600;
}

ul {
  padding-left: 25px;
  margin-top: 10px;
}

li {
  margin-bottom: 10px;
  font-size: 17px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

th {
  background: #2563eb;
  color: white;
  padding: 14px;
}

td {
  padding: 14px;
  border-bottom: 1px solid #e2e8f0;
  text-align: center;
}

tr:nth-child(even) {
  background: #f8fafc;
}

.mcq-box {
  background: #eff6ff;
  border: 2px dashed #2563eb;
  padding: 22px;
  border-radius: 14px;
}

.mcq-box h3 {
  color: #1e40af;
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 26px;
  }

  .section h2 {
    font-size: 21px;
  }

  .original-law p {
    font-size: 16px;
  }
}
