  .bg-oecs {
            background-color: #94c93d;
        }

        .floating-icons {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .floating-icons a {
            margin: 5px;
            display: block;
            background: white;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }

        .floating-icons a i {
            transition: transform 0.3s ease;
        }

        .floating-icons a:hover i {
            transform: scale(1.1);
        }

        .classroom-icon {
            width: 40px;
            height: 40px;
        }

        @media (max-width: 600px) {
            .floating-icons {
                display: none;
            }
        }

        .attractive-lesson-plan {
            background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
            border: 2px solid #94c93d;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .attractive-lesson-plan h2 {
            font-family: 'Playfair Display', serif;
            color: #343a40;
            text-align: center;
        }

        .attractive-lesson-plan pre {
            font-family: 'Roboto', sans-serif;
            background-color: #fff;
            border: 1px solid #dee2e6;
            padding: 15px;
            overflow: auto;
            max-height: 300px;
        }

        .attractive-lesson-plan:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }
        
        .accordion-button {
            width: 100%;
            text-align: left;
            background-color: transparent;
            border: none;
            padding: 1rem;
            font-size: 1.2rem;
            color: #000;
      }
      .chead {
          font-size: 1.2rem;
      }
      .ch {
        font-size: 1.2rem;
      }
      .content {
          margin-top: 0px;!Important
      }
       .card-body {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
    .custom-card-body {
    flex: 1 1 auto;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    border-radius: 0.25rem;
}
    .wrapped-pre {
            white-space: pre-wrap; /* CSS3 */
            white-space: -moz-pre-wrap; /* Firefox */
            white-space: -pre-wrap; /* Opera <7 */
            white-space: -o-pre-wrap; /* Opera 7 */
            word-wrap: break-word; /* IE */
            overflow-wrap: break-word; /* CSS3 */
            width: 100%; /* You can set a specific width if needed */
            border: 1px solid #ccc; /* Optional: for visual distinction */
            padding: 10px; /* Optional: for visual distinction */
            box-sizing: border-box; /* Ensures padding and border are included in the width */
            font-family: Arial;
        }