.essay-award-section {
  padding: 80px 20px;
  background: #fff7f3;
}

.essay-container {
  max-width: 1000px;
  margin: auto;
  background: white;
  padding: 40px 50px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border-left: 6px solid #ff6a2c;
}

/* Heading */

.essay-title {
  text-align: center;
  font-size: 34px;
  color: #0e3c4c;
  margin-bottom: 25px;
  position: relative;
  font-family: "Georgia", serif;
}

/* Orange underline */

.essay-title::after {
  content: "";
  width: 120px;
  height: 4px;
  background: #ff6a2c;
  display: block;
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Paragraph */

.essay-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}
/* Topics Section */

.essay-topics {
  margin-top: 50px;
}

.topics-title {
  font-size: 26px;
  color: #0e3c4c;
  margin-bottom: 15px;
  border-left: 5px solid #ff6a2c;
  padding-left: 12px;
}

.topics-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

/* Table wrapper */

.topics-table-wrapper {
  overflow-x: auto;
  margin-top: 20px;
}

/* Table */

.topics-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Header */

.topics-table thead {
  background: #ffe8dd;
}

.topics-table th {
  padding: 14px;
  font-size: 14px;
  text-align: left;
  color: #0e3c4c;
  border: 1px solid #ddd;
}

/* Body */

.topics-table td {
  padding: 12px;
  font-size: 14px;
  color: #555;
  border: 1px solid #ddd;
}

/* Zebra effect */

.topics-table tbody tr:nth-child(even) {
  background: #fff7f3;
}

/* Hover */

.topics-table tbody tr:hover {
  background: #ffe5d8;
}
