.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-57f5710 */body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #333;
}

.exam-section {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.exam-section h1 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #f57d19;
}

.exam-category {
  margin-bottom: 40px;
}

.exam-category h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #222;
}

.exam-box {
  background: #fff;
  border-left: 6px solid #f57d19;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.exam-box h3 {
  margin-top: 0;
  color: #f57d19;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

table th, table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

table th {
  background: #f57d19;
  color: white;
}

table tr:nth-child(even) {
  background: #f9f9f9;
}

/* Responsive */
@media (max-width: 768px) {
  .exam-section {
    padding: 10px;
  }
  .exam-box {
    padding: 15px;
  }
  table th, table td {
    font-size: 14px;
    padding: 8px;
  }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-be23ac2 *//* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f8f9fc;
  color: #333;
  padding: 20px;
}

/* Table Container */
.table-container {
  max-width: 1000px;
  margin: auto;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.table-container h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 22px;
  color: #ff6600;
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

thead {
  background: #ff6600;
  color: #fff;
}

th, td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
}

tbody tr:nth-child(even) {
  background: #f3f3f3;
}

tbody tr:hover {
  background: #ffe8d9;
  transition: 0.3s ease;
}

/* Highlight Total Row */
.total-row {
  background: #ffebcc;
  font-weight: bold;
  color: #d35400;
}

/* Responsive */
@media (max-width: 768px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }

  thead {
    display: none;
  }

  tr {
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
  }

  td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }

  td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    width: 45%;
    font-weight: bold;
    text-align: left;
    color: #444;
  }
}/* End custom CSS */