        body {
            /*background-image: linear-gradient(to bottom, #FFF0DD, #f9e3c6);*/
            background: #FFF0DD;
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }

        .banner {
            width: 100%;
            height: auto;
            background: url('images/AC-001.jpg') no-repeat center center/cover;
        }

        .container {
            padding-right: 20px;
            padding-left: 20px;
        }

        .section {
            margin-bottom: 20px;
            /*border: 1px solid #ccc;*/
            border-radius: 5px;
            overflow: hidden;
        }

        .section-title {
            /*background: #BF6F28;*/
            background: #323388;
            color: #fff;
            padding: 10px;
            cursor: pointer;
        }


        .section-subtitle {
            /*background: #BF6F28;*/
            background: #581759;
            width: 50%;
            color: #fff;
            padding: 10px;
            display: flex;
            justify-content: center;
            margin: auto;
            border-radius: 5px;
            font-size: larger;
        }


        .section-content {
            color: #561957;
            display: none;
            padding: 10px;
            background: #FFF0DD;
        }

        .contactus {
            color: #561957;
            padding: 10px;
            background: #FFF0DD;
        }




        .icon-buttons img {
            width: 40px;
            height: 40px;
            margin-right: 10px;
            cursor: pointer;
        }

        table {
            background: #f3f3f3;
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
        }

        table th,
        table td {
            border: 1px solid #719E94;
            padding: 8px;
            text-align: left;
        }

        .colored-bullet {
            font-weight: bold;
            color: #561957;
        }

        .colored-blueword {
            font-weight: bold;
            color: #323388;
        }

        .colored-redword {
            font-weight: bold;
            color: #DE2126;
        }


        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 10px;
            margin-top: 10px;
        }

        .grid-item {
            text-align: center;
            border: 1px solid #ddd;
            padding: 10px;
            border-radius: 5px;
        }

        .grid-item img {
            width: 100px;
            height: auto;
            border-radius: 50%;
            margin-bottom: 10px;
        }

        .contact-icons {
            width: 100%;
            max-width: 100vw;
            display: flex;
            flex-direction: row;
            gap: 15px;
            flex-wrap: wrap;
        }

        .contact-icons a {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            border-radius: 8px;
            background-color: #f3f3f3;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .contact-icons a:hover {
            background-color: #007bff;
            transform: scale(1.01);
            color: #fff;
        }

        .contact-icons img {
            width: 24px;
            height: 24px;
        }

        .contact-icons span {
            font-size: 16px;
            font-weight: bold;
            color: #333;
        }

        .contact-icons a:hover span {
            color: #fff;
        }


        hr {
            border: 0;
            /* Remove the default border */
            height: 2px;
            /* Set the height of the line */
            background-color: #561957;
            /* Set the color of the line */
            width: 80%;
            /* Set the width of the line */

        }



        .info {
            width: 100%;
            margin: 0px auto;
            background: #f5f5f5;
            background-size: 200px;
            padding: 20px;
        }

        .info h1 {
            text-align: left;
            margin: 10px 0;
            color: #C43331;
            font-size: 25px;
            font-weight: bold;
        }

        .custom-list li {
            position: relative;
            padding-left: 30px;
            /* Space for the custom bullet */
            margin-bottom: 8px;
            text-align: left;
            color: #6D3C3E;
          }
          
          