/* =========================================
   CBSE MANDATORY DISCLOSURE
   Uses Global Font & Global Variables
========================================= */

.cbse-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 15px 60px;
}

/* =========================================
   SECTION TITLE
========================================= */

.cbse-container .section-title {
  color: var(--green-dark);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin: 35px 0 18px;
  padding-left: 14px;
  border-left: 6px solid var(--gold);
}

.cbse-container .section-title:first-child {
  margin-top: 0;
}

/* =========================================
   TABLE WRAPPER
========================================= */

.cbse-container .table-wrapper {
  width: 100%;
  background: var(--white);
  border: 1px solid #d8e5da;
  padding: 5px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  overflow-x: auto;
}

/* =========================================
   CBSE TABLE
========================================= */

.cbse-container .cbse-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;

  /* Font is inherited from your global body */
  font-size: 15px;
  line-height: 1.45;
}

/* =========================================
   TABLE HEADER
========================================= */

.cbse-container .cbse-table th {
  background: var(--green);
  color: var(--white);
  padding: 11px 8px;
  text-align: center;
  font-weight: 600;
  vertical-align: middle;
}

/* Document table header */

.cbse-container .document-table th {
  background: var(--gold);
  color: var(--text);
}

/* =========================================
   TABLE CELLS
========================================= */

.cbse-container .cbse-table td {
  background: #f8faf8;
  border: 1px solid #d9e2db;
  padding: 9px;
  vertical-align: middle;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Hover */

.cbse-container .cbse-table tbody tr:hover td {
  background: #eef7f0;
}

/* =========================================
   COLUMN WIDTHS
========================================= */

.cbse-container .sl-no {
  width: 80px;
  text-align: center;
}

.cbse-container .information {
  width: 42%;
}

.cbse-container .details {
  width: auto;
}

.cbse-container .document {
  width: 235px;
}

/* =========================================
   DOCUMENT LINKS
========================================= */

.cbse-container .view-link {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: none;
}

.cbse-container .view-link:hover {
  color: #a88400;
  text-decoration: underline;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {
  .cbse-container {
    padding: 25px 15px 50px;
  }

  .cbse-container .section-title {
    font-size: 27px;
  }

  .cbse-container .cbse-table {
    font-size: 14px;
  }

  .cbse-container .cbse-table th {
    padding: 9px 6px;
  }

  .cbse-container .cbse-table td {
    padding: 8px 6px;
  }
}

/* =========================================
   MOBILE
   SHRINK TABLE TO FIT SCREEN
========================================= */

@media (max-width: 767px) {
  .cbse-container {
    width: 100%;
    padding: 20px 15px 40px;
  }

  .cbse-container .section-title {
    font-size: 25px;
    margin: 20px 0 15px;
    padding-left: 10px;
    border-left-width: 5px;
  }

  .cbse-container .table-wrapper {
    padding: 3px;
    overflow: hidden;
    box-shadow: none;
  }

  .cbse-container .cbse-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    border-spacing: 3px;
    font-size: 12px;
  }

  .cbse-container .cbse-table th {
    padding: 8px 4px;
    font-size: 11px;
    line-height: 1.3;
  }

  .cbse-container .cbse-table td {
    padding: 7px 5px;
    font-size: 12px;
    line-height: 1.4;
    white-space: normal;
  }

  /* -------------------------------------
       GENERAL INFORMATION TABLE
       Sl.No. = Small
       Information = Medium
       Details = Large
    ------------------------------------- */

  .cbse-container .cbse-table .sl-no {
    width: 8%;
    text-align: center;
  }

  .cbse-container .cbse-table .information {
    width: 36%;
  }

  .cbse-container .cbse-table .details {
    width: 56%;
  }

  /* -------------------------------------
       DOCUMENT TABLE
    ------------------------------------- */

  .cbse-container .document-table .sl-no {
    width: 8%;
  }

  .cbse-container .document-table .information {
    width: 62%;
  }

  .cbse-container .document-table .document {
    width: 30%;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .cbse-container {
    padding: 15px 10px 35px;
  }

  .cbse-container .section-title {
    font-size: 22px;
    margin: 18px 0 13px;
    padding-left: 8px;
    border-left-width: 4px;
  }

  .cbse-container .table-wrapper {
    padding: 2px;
  }

  .cbse-container .cbse-table {
    border-spacing: 2px;
    font-size: 11px;
  }

  .cbse-container .cbse-table th {
    padding: 7px 3px;
    font-size: 10px;
  }

  .cbse-container .cbse-table td {
    padding: 6px 4px;
    font-size: 11px;
    line-height: 1.4;
  }

  /* General Information */

  .cbse-container .cbse-table .sl-no {
    width: 8%;
  }

  .cbse-container .cbse-table .information {
    width: 36%;
  }

  .cbse-container .cbse-table .details {
    width: 56%;
  }

  /* Document Information */

  .cbse-container .document-table .sl-no {
    width: 8%;
  }

  .cbse-container .document-table .information {
    width: 62%;
  }

  .cbse-container .document-table .document {
    width: 30%;
  }
}

/* =====================================================
   CBSE HERO
   Uses existing global :root colours
   ===================================================== */

.cbse-hero {
  position: relative;
  min-height: 700px;
  width: 100%;

  background-image:
    linear-gradient(
      90deg,
      rgba(0, 77, 28, 0.88),
      rgba(0, 109, 37, 0.55),
      rgba(0, 109, 37, 0.2)
    ),
    url("/cbse/images/banner.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;

  overflow: hidden;
}

/* Content */

.cbse-hero-content {
  width: min(1200px, 92%);
  margin: auto;
  padding: 70px 0 110px;

  position: relative;
  z-index: 2;
}

.cbse-label {
  display: inline-block;

  padding: 10px 22px;
  margin-bottom: 20px;

  background: var(--gold);
  color: var(--green-dark);

  border-radius: 30px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cbse-hero h1 {
  max-width: 700px;

  color: var(--white);

  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.1;
  font-weight: 800;

  margin-bottom: 20px;
}

.cbse-hero h1 span {
  color: var(--gold);
}

.cbse-hero p {
  max-width: 700px;

  color: var(--white);

  font-size: 18px;
  line-height: 1.7;

  margin-bottom: 30px;
}

/* Button */

.cbse-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 13px 25px;

  background: var(--gold);
  color: var(--green-dark);

  border: 2px solid var(--gold);
  border-radius: 30px;

  text-decoration: none;
  font-weight: 700;

  transition: 0.3s ease;
}

.cbse-hero-btn:hover {
  background: transparent;
  color: var(--white);
}

/* Down arrow */

.cbse-scroll {
  position: absolute;

  left: 50%;
  bottom: 30px;

  width: 42px;
  height: 42px;

  transform: translateX(-50%);

  border: 2px solid var(--gold);
  border-radius: 50%;

  z-index: 5;

  animation: cbseArrow 1.8s infinite ease-in-out;
}

.cbse-scroll::after {
  content: "";

  position: absolute;

  width: 9px;
  height: 9px;

  left: 14px;
  top: 11px;

  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);

  transform: rotate(45deg);
}

@keyframes cbseArrow {
  0% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }

  100% {
    transform: translateX(-50%) translateY(0);
  }
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 768px) {
  .cbse-hero {
    min-height: 550px;

    background-image:
      linear-gradient(rgba(0, 77, 28, 0.78), rgba(0, 77, 28, 0.88)),
      url("/cbse/images/banner.png");

    background-position: center;
  }

  .cbse-hero-content {
    width: 90%;
    padding: 60px 0 110px;
    text-align: center;
  }

  .cbse-hero h1 {
    font-size: 38px;
  }

  .cbse-hero p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .cbse-hero {
    min-height: 520px;
  }

  .cbse-hero h1 {
    font-size: 32px;
  }

  .cbse-label {
    font-size: 12px;
  }
}

/* start*/

/* =========================================================
   CBSE SCHOOL INFORMATION
   BOOTSTRAP-FREE
   Uses Existing Global Website Theme
   ========================================================= */

.cbse-info-section {
    width: 100%;
    padding: 55px 0 70px;
    background: var(--cream, #fffde0);
}


/* Main Width */

.cbse-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================================
   PAGE TITLE
   ========================================================= */

.cbse-page-title {
    position: relative;
    margin: 0 0 30px;
    padding-left: 18px;

    font-family: inherit;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;

    color: var(--green-dark, #006d25);
}


/* Gold vertical line */

.cbse-page-title::before {
    content: "";

    position: absolute;
    left: 0;
    top: 5px;

    width: 5px;
    height: calc(100% - 10px);

    background: var(--gold, #ffd000);
    border-radius: 5px;
}


/* =========================================================
   TABLE
   ========================================================= */

.cbse-table {
    width: 100%;

    background: var(--white, #ffffff);

    border: 1px solid rgba(0, 109, 37, 0.18);
    border-radius: 8px;

    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0, 80, 30, 0.07);
}


/* Each Row */

.cbse-table-row {
    display: grid;

    grid-template-columns: 65px minmax(0, 1fr) 245px;

    align-items: center;

    min-height: 54px;

    border-bottom: 1px solid rgba(0, 109, 37, 0.12);

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


/* Remove border from last row */

.cbse-table-row:last-child {
    border-bottom: none;
}


/* =========================================================
   TABLE HEADER
   ========================================================= */

.cbse-table-header {
    min-height: 56px;

    background: var(--green, #00852b);

    color: var(--white, #ffffff);

    font-weight: 600;
}


.cbse-table-header .cbse-number {
    color: #ffffff;
}


.cbse-table-header .cbse-details {
    color: #ffffff;
}


.cbse-table-header .cbse-action {
    color: #ffffff;
}


/* =========================================================
   NUMBER COLUMN
   ========================================================= */

.cbse-number {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--green-dark, #006d25);

    font-weight: 600;

    border-right: 1px solid rgba(0, 109, 37, 0.12);
}


/* =========================================================
   DETAILS
   ========================================================= */

.cbse-details {
    padding: 14px 18px;

    color: var(--text, #222222);

    font-size: 15px;
    line-height: 1.5;
}


/* =========================================================
   VIEW COLUMN
   ========================================================= */

.cbse-action {
    height: 100%;

    display: flex;
    align-items: center;

    padding: 0 18px;

    border-left: 1px solid rgba(0, 109, 37, 0.12);
}


.cbse-action a {
    display: inline-flex;
    align-items: center;

    color: var(--green, #00852b);

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: color 0.25s ease;
}


/* Arrow */

.cbse-action a::after {
    content: "→";

    margin-left: 7px;

    transition: transform 0.25s ease;
}


.cbse-action a:hover {
    color: var(--green-dark, #006d25);
}


.cbse-action a:hover::after {
    transform: translateX(4px);
}


/* =========================================================
   ALTERNATE ROW
   ========================================================= */

.cbse-table-row:not(.cbse-table-header):nth-child(odd) {
    background: #f7fbf7;
}


/* =========================================================
   HOVER
   ========================================================= */

.cbse-table-row:not(.cbse-table-header):hover {
    background: #edf8ee;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .cbse-info-section {
        padding: 40px 0 50px;
    }

    .cbse-container {
        width: 94%;
    }


    /* Heading */

    .cbse-page-title {
        margin-bottom: 24px;

        font-size: 30px;
    }


    /* Remove table outer appearance */

    .cbse-table {
        border: none;
        box-shadow: none;
        background: transparent;
        overflow: visible;
    }


    /* Hide desktop heading */

    .cbse-table-header {
        display: none;
    }


    /* Each item becomes a card */

    .cbse-table-row:not(.cbse-table-header) {
        display: grid;

        grid-template-columns: 50px minmax(0, 1fr);

        min-height: auto;

        margin-bottom: 8px;

        background: #ffffff;

        border: 1px solid rgba(0, 109, 37, 0.12);

        border-radius: 7px;

        overflow: hidden;
    }


    /* Number */

    .cbse-table-row:not(.cbse-table-header) .cbse-number {
        grid-row: span 2;

        padding: 15px 5px;

        border-right: 1px solid rgba(0, 109, 37, 0.12);
    }


    /* Details */

    .cbse-table-row:not(.cbse-table-header) .cbse-details {
        padding: 13px 15px 5px;

        font-size: 14px;
    }


    /* View */

    .cbse-table-row:not(.cbse-table-header) .cbse-action {
        height: auto;

        padding: 0 15px 13px;

        border-left: none;
    }


    .cbse-action a {
        font-size: 13px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .cbse-info-section {
        padding: 30px 0 40px;
    }

    .cbse-page-title {
        font-size: 27px;
        padding-left: 14px;
    }

    .cbse-page-title::before {
        width: 4px;
    }

    .cbse-details {
        word-break: normal;
    }

}
```

### Your existing global CSS remains unchanged

```css
:root {
    --green: #00852b;
    --green-dark: #006d25;
    --green-card: #4c913d;
    --gold: #ffd000;
    --cream: #fffde0;
    --text: #222;
    --white: #fff;
}
```

**No Bootstrap is required anywhere.** The page uses only your existing global theme variables and custom CSS.
