/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #fff; /* Ensure consistent background */
  }
  
  /* Styling for the image and yellow box container */
  .image-below-header {
    position: relative;
    width: 100%;
    margin-top: 0; /* Removed space between header and image */
    display: flex;
    justify-content: center;
    padding: 0;
  }
  
  .image-below-header img {
    width: 100%;
    height: auto;
    display: block;
  }
  .program-content {
    padding: 20px;
    background-color: #fff;
    color: black;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    max-width: 100%;
}

/* Left Box */
.left-box {
    flex: 1 1 48%;
    background-color: #5c130b;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #fff;
    max-width: 500px;
    margin: 20px ;
}

.left-box h2 {
    font-size: 22px;
    font-weight: bold;
    color: yellow;
    margin-bottom: 20px;
}

.left-box ul {
    list-style-type: none;
    padding: 0;
}

.left-box ul li {
    margin-bottom: 15px;
}

.left-box ul li a {
    text-decoration: none;
    color: #ffc107;
    font-size: 16px;
    font-weight: bold;
}

.left-box ul li a:hover {
    color: white;
}

.program-content .heading {
    font-size: 24px;
    color: black;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: left;
}

.program-content .content {
    margin-bottom: 20px;
    font-size: 16px;
    text-align: justify;
}

/* List Styling */
.program-content ul {
    margin: 15px 0;
    padding-left: 20px;
    list-style-type: disc;
}

.program-content ul li {
    margin-bottom: 8px;
}

/* Table Styling */
.fee-structure-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
    overflow-x: auto;
}

.fee-structure-table th,
.fee-structure-table td {
    padding: 10px 15px;
    border: 1px solid #ddd;
}

.fee-structure-table .header-row {
    background-color: hsl(0, 70%, 17%);
    color: #ffc107;
    font-weight: bold;
}

.fee-structure-table tr:nth-child(even) {
    background-color: #bfbec6;
}

.fee-structure-table tr:nth-child(odd):not(.header-row) {
    background-color: hsl(0, 61%, 17%);
    color: white;
}

.fee-structure-table tr:last-child td {
    font-weight: bold;
}

/* Section Styling */
.section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .program-content {
        padding: 15px;
    }

    .program-content .heading {
        font-size: 20px;
    }

    .fee-structure-table {
        font-size: 14px;
    }

    .fee-structure-table th,
    .fee-structure-table td {
        padding: 8px;
    }

    .left-box {
        margin: 10px;
    }
}

@media (max-width: 480px) {
    .fee-structure-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .fee-structure-table th,
    .fee-structure-table td {
        padding: 6px;
        font-size: 12px;
    }

    .program-content .heading {
        font-size: 18px;
    }

    .program-content ul {
        padding-left: 15px;
    }

    .section {
        padding: 15px;
    }

    .left-box {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .fee-structure-table {
      font-size: 14px;
    }
  
    .fee-structure-table th,
    .fee-structure-table td {
      padding: 8px;
    }
  }
  
  @media (max-width: 480px) {
    .fee-structure-table {
      display: block;
      overflow-x: auto;
      white-space: nowrap;
    }
  
    .fee-structure-table th,
    .fee-structure-table td {
      padding: 6px;
      font-size: 12px;
    }
  
    .heading {
      font-size: 18px;
    }
  }