 :root {
     --primary-color: #2c3e50;
     --secondary-color: #3498db;
     --text-color: #333;
     --light-gray: #f5f6fa;
     --border-color: #e1e1e1;
 }

 p,
 span {
     font-weight: unset;
 }

 b,
 strong {
     font-weight: bold;
 }

 .cm1 {
     max-height: 20px;
     display: block;
     -o-object-fit: cover;
     object-fit: cover;
     width: 100%;
     min-height: 200px;
 }

 #main .section {
     background-color: white;
     padding: 2rem;
     margin: 2rem 0;
     border-radius: 8px;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
     transition: transform 0.2s ease;
 }

 #main .section:hover {
     transform: translateY(-2px);
 }

 #main h1 {
     color: var(--primary-color);
     font-size: 2.5em;
     margin-bottom: 0.5rem;
     border-bottom: 3px solid var(--secondary-color);
     padding-bottom: 0.5rem;
 }

 #main h2 {
     color: var(--secondary-color);
     font-size: 1.8em;
     margin-top: 0.5rem;
 }

 #main .heading {
     color: var(--primary-color);
     font-size: 1.5em;
     font-weight: bold;
     margin: 1.5rem 0 1rem;
     padding-left: 1rem;
     border-left: 4px solid var(--secondary-color);
 }

 #main .table {
     width: 100%;
     border-collapse: separate;
     border-spacing: 0;
     margin: 1rem 0;
     border-radius: 8px;
     overflow: hidden;
 }

 #main .table td {
     padding: 1rem;
     vertical-align: top;
     border: 1px solid var(--border-color);
 }

 #main .table tr:nth-child(even) {
     background-color: var(--light-gray);
 }

 .table td:first-child {
     width: 25%;
     font-weight: bold;
     background-color: var(--primary-color);
     color: white;
 }

 #main .list {
     list-style-type: none;
     padding-left: 0;
 }

 .list li {
     margin-bottom: 1rem;
     padding-left: 2rem;
     position: relative;
 }

 #main .list li:before {
     content: "•";
     color: var(--secondary-color);
     font-weight: bold;
     position: absolute;
     left: 0.5rem;
 }

 #main .note {
     color: #686868;
     font-style: italic;
     font-size: 0.9em;
     padding: 1rem;
     background-color: var(--light-gray);
     border-left: 4px solid #686868;
     margin: 1rem 0;
     border-radius: 4px;
 }

 #main .highlight {
     text-decoration: none;
     background-color: #ffeeba;
     padding: 0.5rem 1rem;
     border-radius: 4px;
     display: inline-block;
     border: 1px solid #ffeeba;
 }

 #main a {
     color: var(--secondary-color);
     text-decoration: none;
     transition: color 0.2s ease;
 }

 #main a:hover {
     color: var(--primary-color);
     text-decoration: underline;
 }

 #main strong {
     color: var(--primary-color);
 }

 #main ol {
     padding-left: 1.5rem;
 }

 #main ol li {
     margin-bottom: 0.5rem;
 }

 #main p {
     margin: 0.5rem 0;
 }

 @media (max-width: 768px) {

     #main .table td:first-child {
         width: 35%;
     }

     #main .section {
         padding: 1rem;
         margin: 1rem 0;
     }

     #main h1 {
         font-size: 2em;
     }

     #main h2 {
         font-size: 1.5em;
     }
 }