 * {
               margin: 0;
               padding: 0;
               box-sizing: border-box;
               font-family: Arial, Helvetica, sans-serif;
          }

          body {
               overflow-x: hidden;
          }

          /* Header */
          .top-header {
               width: 100%;
               min-height: 155px;
               background: #000;
               color: #fff;
               display: flex;
               align-items: center;
               justify-content: space-between;
               padding: 20px 55px;
          }

          .logo img {
               width: 230px;
               max-width: 100%;
          }

          .title {
               text-align: center;
          }

          .title h1 {
               font-size: 60px;
               font-weight: 400;
               letter-spacing: 4px;
          }

          .title p {
               font-size: 25px;
               font-weight: 600;
               margin-top: 8px;
          }

          .sebi {
               display: flex;
               align-items: center;
               gap: 18px;
          }

          .accessibility {
               width: 75px;
               height: 75px;
               background: #0757ff;
               border: 4px solid #74a4ff;
               border-radius: 50%;
               display: flex;
               align-items: center;
               justify-content: center;
               color: white;
               font-size: 35px;
               flex-shrink: 0;
          }

          .sebi h3 {
               font-size: 20px;
               font-weight: 600;
               white-space: nowrap;
          }

          /* Navbar */
          .navbar {
               width: 100%;
               min-height: 70px;
               background: #f7f7fb;
               display: flex;
               align-items: center;
               justify-content: center;
               padding: 0px 0px;
               position: relative;
          }

          .navbar ul {
               list-style: none;
               display: flex;
               align-items: center;
               justify-content: center;
               gap: 26px;
               flex-wrap: wrap;
          }

          .navbar ul li {
               position: relative;
          }

          .navbar a {
               text-decoration: none;
               color: #000;
               font-size: 21px;
               letter-spacing: 1px;
               display: block;
               padding: 22px 0;
          }

          .navbar a:hover {
               color: #0b57ff;
          }

          /* Dropdown Desktop */
          .dropdown-menu {
               display: none !important;
               position: absolute;
               top: 68px;
               left: 0;
               width: 230px;
               background: #fff;
               box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
               z-index: 999;
          }

          .dropdown-menu li {
               width: 100%;
          }

          .dropdown-menu li a {
               padding: 18px 22px;
               font-size: 18px;
               white-space: nowrap;
          }

          .dropdown:hover .dropdown-menu {
               display: block !important;
          }

          /* Hamburger */
          .menu-toggle {
               display: none;
          }

          /* Tablet */
          @media (max-width: 1200px) {
               .top-header {
                    padding: 20px 30px;
               }

               .logo img {
                    width: 190px;
               }

               .title h1 {
                    font-size: 48px;
               }

               .title p {
                    font-size: 21px;
               }

               .sebi h3 {
                    font-size: 17px;
               }

               .navbar ul {
                    gap: 24px;
               }

               .navbar a {
                    font-size: 19px;
               }
          }

          /* Small Tablet */
          @media (max-width: 900px) {
               .top-header {
                    flex-direction: column;
                    text-align: center;
                    gap: 18px;
               }

               .sebi {
                    justify-content: center;
               }
          }

          /* Mobile Navbar */
          @media (max-width: 768px) {
               .navbar {
                    justify-content: flex-end;
                    padding: 0 20px;
               }

               .menu-toggle {
                    display: block;
                    margin-left: auto;
                    font-size: 32px;
                    cursor: pointer;
                    color: #000;
                    padding: 12px 0;
               }

               .navbar ul {
                    display: none;
                    width: 100%;
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 0;
                    background: #f7f7fb;
                    position: absolute;
                    top: 60px;
                    left: 0;
                    padding: 10px 20px;
                    z-index: 9999;
               }

               .navbar ul.active {
                    display: flex;
               }

               .navbar ul li {
                    width: 100%;
                    text-align: left;
               }

               .navbar a {
                    padding: 13px 0;
                    font-size: 17px;
               }

               .dropdown-menu {
                    position: static !important;
                    width: 100%;
                    box-shadow: none;
                    background: #fff;
                    padding-left: 15px;
                    display: none !important;
               }

               .dropdown:hover .dropdown-menu {
                    display: block !important;
               }

               .dropdown-menu li a {
                    padding: 12px 15px;
                    font-size: 16px;
               }
          }

          /* Mobile Header */
          @media (max-width: 600px) {
               .top-header {
                    padding: 20px 15px;
               }

               .logo img {
                    width: 160px;
               }

               .title h1 {
                    font-size: 34px;
                    letter-spacing: 2px;
               }

               .title p {
                    font-size: 16px;
               }

               .sebi {
                    flex-direction: column;
                    gap: 10px;
               }

               .accessibility {
                    width: 62px;
                    height: 62px;
                    font-size: 28px;
               }

               .sebi p {
                    font-size: 25px;
                    white-space: normal;
                    text-align: center;
               }
          }

          @media (max-width: 400px) {
               .title h1 {
                    font-size: 28px;
               }

               .title p {
                    font-size: 14px;
               }
          }

          .site-footer {
               width: 100%;
               border-top: 1px solid #e6b86a;
               background: #fff;
               padding: 14px 20px;
               position: relative;
          }

          .footer-container {
               width: 100%;
               max-width: 1800px;
               margin: 0 auto;
               text-align: center;
          }

          .footer-container p {
               font-size: 18px;
               color: #000;
               letter-spacing: 0.5px;
          }

          .footer-container a {
               color: #0b00a8;
               text-decoration: none;
          }

          .footer-container a:hover {
               text-decoration: underline;
          }

          .scroll-top {
               position: fixed;
               right: 24px;
               bottom: 18px;
               width: 30px;
               height: 30px;
               background: #11008b;
               color: #fff;
               text-decoration: none;
               display: flex;
               align-items: center;
               justify-content: center;
               font-size: 20px;
               z-index: 999;
          }

          /* Responsive */
          @media (max-width: 768px) {
               .site-footer {
                    padding: 16px 45px 16px 15px;
               }

               .footer-container p {
                    font-size: 15px;
                    line-height: 1.5;
               }

               .scroll-top {
                    right: 12px;
                    bottom: 14px;
                    width: 28px;
                    height: 28px;
                    font-size: 18px;
               }
          }

          @media (max-width: 480px) {
               .footer-container p {
                    font-size: 14px;
               }
          }

          .logo img {
               width: 230px;
               max-width: 100%;
               height: auto;
               display: block;
          }

          .title h1 {
               font-size: clamp(32px, 5vw, 60px);
               font-weight: 400;
               letter-spacing: 4px;
          }

          .title p {
               font-size: clamp(14px, 2vw, 25px);
               font-weight: 600;
               margin-top: 8px;
          }

          .sebi h2 {
               font-size: 20px;
               font-weight: 600;
               white-space: nowrap;
          }

          .navbar a:hover,
          .navbar a:focus,
          .dropdown-toggle:hover,
          .dropdown-toggle:focus {
               color: #0b57ff;
          }

          a:focus,
          button:focus {
               outline: 3px solid #0b57ff;
               outline-offset: 3px;
          }

          .dropdown-toggle {
               background: none;
               border: none;
               font: inherit;
               color: #000;
               cursor: pointer;
               padding: 22px 0;
               letter-spacing: 1px;
          }

          @media (max-width: 768px) {

               .dropdown-toggle {
                    width: 100%;
                    text-align: left;
                    font-size: 17px;
                    padding: 13px 0;
               }

               .sebi h2 {
                    font-size: 17px;
                    white-space: normal;
                    text-align: center;
               }
          }

          .site-footer {
               width: 100%;
               border-top: 1px solid #e6b86a;
               background: #fff;
               padding: 16px 20px;
          }

          .footer-container {
               max-width: 1800px;
               margin: 0 auto;
               text-align: center;
          }

          .footer-container p {
               margin: 8px 0;
               font-size: 16px;
               line-height: 1.6;
               color: #000;
          }

          .footer-container a {
               color: #0b00a8;
               text-decoration: none;
          }

          .footer-container a:hover,
          .footer-container a:focus {
               text-decoration: underline;
          }

          @media (max-width: 768px) {
               .footer-container p {
                    font-size: 14px;
               }
          }