 body,
 html {
     margin: 0 auto;
     padding: 0;
     height: 100%;
     max-width: 1400px;
     font-family: 'Arial', sans-serif;
     background-color: #f0f8ff;
     /* Light pastel blue background */
     color: #333;
 }

 .header {
     display: flex;
     justify-content: center;
     /* Center items horizontally */
     align-items: center;
     text-align: center;
     /* Ensure text inside elements is centered */
     width: 100%;
     
 }

 /* Layout */
 .csccontainer {
     display: flex;
     min-height: 100vh;
 }

 /* Left Column - Menu and Site Name */
 .cscleft-column {
     width: 250px;
     background-color: #ff69b4;
     /* Bright pink */
     color: white;
     padding: 20px;
     box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
 }

 .cscsite-name {
     font-size: 1.5rem;
     font-weight: bold;
     margin-bottom: 20px;
     text-align: center;
 }

 .menu {
     display: flex;
     flex-direction: column;
 }

 .menu a {
     color: white;
     text-decoration: none;
     padding: 10px;
     margin: 5px 0;
     border-radius: 5px;
     transition: background-color 0.3s ease;
 }

 .menu a:hover {
     background-color: #ff1493;
     /* Darker pink on hover */
 }

 /* Right Column - Content */
 .cscright-column {
     flex: 1;
     display: flex;
     flex-direction: column;
     padding: 20px;
     background-color: #f0f8ff;
 }

 .csccontent {
     flex: 1;
     margin-top: 50px;
 }

 /* Typography */
 h1 {
     font-size: 2.5rem;
     color: #ff69b4;
     margin-top: 0;
     text-align: center;
 }

 h2 {
     font-size: 2rem;
     color: #ff69b4;
     text-align: center;
 }

 h3 {
     font-size: 1.75rem;
     color: #ff69b4;
 }

 h4 {
     font-size: 1.5rem;
     color: #ff69b4;
 }

 p {
     font-size: 1.2rem;
     line-height: 1.6;
 }

 a {
     text-decoration: none;
     transition: all 0.3s ease;
 }

 a:hover {
     color: white;
 }

 /* Lists */
 ul,
 ol {
     font-size: 1.2rem;
     margin: 20px 0;
     padding-left: 20px;
 }

 li {
     margin: 10px 0;
 }

 /* Buttons */
 button {
     padding: 10px 20px;
     font-size: 1rem;
     background-color: #ff69b4;
     color: white;
     border: none;
     border-radius: 5px;
     cursor: pointer;
     transition: background-color 0.3s ease;
 }

 button:hover {
     background-color: #ff1493;
 }

 /* Tables */
 table {
     width: 100%;
     border-collapse: collapse;
     margin: 20px 0;
 }

 th,
 td {
     padding: 10px;
     border: 1px solid #ff69b4;
     text-align: left;
 }

 th {
     background-color: #ff69b4;
     color: white;
 }

 /* Images */
 img {
     max-width: 100%;
     height: auto;
     border-radius: 10px;
     margin: 20px 0;
 }

 /* Responsive Menu for Mobile */
 .menu-icon {
     display: none;
     font-size: 1.5rem;
     cursor: pointer;
 }

 /* Mobile Styles */
 @media (max-width: 768px) {
     .csccontainer {
         flex-direction: column;
     }

     .cscleft-column {
         width: 100%;
         padding: 10px;
         display: flex;
         justify-content: space-between;
         align-items: center;
     }

     .cscsite-name {
         margin-bottom: 0;
     }

     .menu {
         display: none;
         flex-direction: column;
         width: 100%;
         background-color: #ff69b4;
         position: absolute;
         top: 60px;
         left: 0;
         padding: 10px;
         box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
         z-index: 1000;
         /* Ensure menu is above other content */
     }

     .menu.active {
         display: flex;
     }

     .menu-icon {
         display: block;
         padding-right: 20px;
     }

     /* Add padding to the right to prevent overlap with scrollbar */
     .cscright-column {
         padding-right: 15px;
     }
 }

 /* Footer */
 footer {
     text-align: center;
     padding: 5px;
     background-color: #ff69b4;
     color: white;
     margin-top: auto;
     /* Push footer to the bottom */
 }

 .footer-menu {
     margin-bottom: 10px;
     color: white;
 }

 .footer-menu a {
     color: white;
     /* Change this to your desired color */
     text-decoration: none;
     /* Optional: removes underline */
 }

 .footer-menu a:hover {
     color: lightgray;
     /* Change color on hover if needed */
 }