
        :root {
            --dark-blue: #0c0a33;
            --light-blue: #8061ff;
            --text-light: #ffff;
            --text-dark: #000000;
            
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
           font-family: "Poppins", sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            font-family: "Syne", sans-serif !important;
            background-color: #ffffff;
        }

        .ui-header {
            background-color: var(--dark-blue);
            color: var(--text-light);
            padding: 20px 0px;
        }
        .ui-header .title {
            font-size: 45px;
            font-weight: 700;
            line-height: 1.5;
            color: var(--text-light);
        }
         .ui-header .data {
            padding: 50px 0px;
         }
        .ui-header .text {
            color: rgb(217, 225, 255);
            font-size: 19px;
            font-weight: 400;
            line-height: 1.5;
            margin-bottom: 32px;
        }
        .ui-header img {
            max-height: 620px;
            width: 100%;
            object-fit: cover;
            height: auto;
        }
        .ui-header .buttons {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        .ui-header .buttons button,.ui-header .buttons a {
            
            border: 1px solid var(--light-blue);
            color: var(--light-blue);
            background-color: transparent;
          
            padding: 15px 30px;
            font-size: 19px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }
        .ui-header .buttons .btn-light {
            background-color: var(--light-blue);
             color: var(--text-light);
        }
         .ui-header .buttons button:focus,.ui-header .buttons a:focus {
            outline:none;}
            .custom-section {
                padding: 80px 0px;
                background-color: var(--dark-blue);
            }
             .custom-section .title {
            font-size: 45px;
            font-weight: 700;
            line-height: 1.5;
            /* color: var(--text-light); */
        }
        .custom-section.light {
            background-color: var(--light-blue);
        }
          .custom-section.light .title {
            color: var(--text-dark);
          }
          .custom-section .icon {
            margin-bottom: 20px;
          }
          .custom-section .icon img {
            width: auto;
            height: 64px;
          }
          .dark {
            color: var(--text-dark) !important;
          }
          .light {
            color: var(--text-light) !important;
          }
          .custom-section .sub-title {
            font-size: 24px;
            font-weight: 700;
            line-height: 1.5;
            margin-bottom: 12px;
          }
            .custom-section .box {
                border-radius: 8px;
                padding: 20px;
                border: 2px solid var(--light-blue);
                border-left: 6px solid var(--light-blue);
            }
            .custom-section .box .sub-title {
               line-height: 1.2;
               margin-bottom: 12px;
            }
            .custom-section .box .text {
                margin-bottom: 0px;
            }
            .custom-section .green-box {
                padding: 32px;
                display: flex;
                align-items: flex-start;
                background-color: #183113;
                font-size: 23px;
            font-weight: 400;
            line-height: 1.5;
            margin-bottom: 32px;
            gap: 16px;
            }
            
              .custom-section .green-box img {
                width: 20px;
                height: auto;
                   margin-top: 8px;
              }
          .custom-section .text {
            font-size: 19px;
            font-weight: 400;
            line-height: 1.5;
            margin-bottom: 12px;
          }
          .custom-section .image.right {
            padding-right: 40px;
          }
           .custom-section .image img {
            max-height: 560px;
            width: 100%;
            object-fit: cover;
           }
           .custom-section .image img.auto {
            height: auto;
            max-height: none;
           }
           .custom-section.small {
            padding: 40px;
           }
           .custom-section .dark-box {
            padding: 20px;
            background-color: #2b2952;
           }
           .custom-section .count {
            font-weight: 700;
            font-size: 63px;
            color: var(--text-dark);
            margin-bottom: 12px;
           }
           .request-button {
            border: 1px solid var(--text-dark);
            color: var(--text-light);
            background-color:var(--text-dark);
          
            padding: 15px 30px;
            font-size: 19px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            transition: background-color 0.3s ease;
           }
           button:focus,a:focus {
            outline:none;}
            .graphs-section {
              max-width: 1000px;
              margin: 30px auto;
            }
            @media (max-width: 768px) {
              #environmentalImpactChart{
                height: 300px !important;
              }
                .ui-header .data {
                    text-align: center;
                }
                .ui-header .buttons {
                    justify-content: center;
                    flex-direction: column;
                }
                .custom-section .image.right {
                    padding-right: 0px;
                    margin-top: 40px;
                }
                .ui-header .title,.custom-section.light .title ,.custom-section .title{
                  font-size: 24px;
                }
                .ui-header .title br {
                  display: none;
                }
                .custom-section {
                  padding: 24px 16px;
                }
                .custom-section .image img,.custom-section .image img.auto {
                  margin-bottom: 20px;
                  margin-top: 20px;
                  display: block;
                  border-radius: 16px;
                  max-height: 400px;
                }
                .custom-section .count {
                  font-size: 50px;
                }
                .request-button {
                  display: block;
                  margin: auto;
                }
                .custom-section .sub-title {
                  font-size: 20px;
                }
                .custom-section .text {
                  font-size: 16px;
                }
            }