 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            line-height: 1.6;
            /* background: url("https://d.furaffinity.net/art/cyber-ogurchik/1631388545/1631388545.cyber-ogurchik_1123-1.gif");
            background-size: 100%;*/
            
        }


          /* Header Styles */
        header {
            background-color: #0F0242;
            color: white;
            text-align: center;
            padding: .75rem;
            position: relative;
            z-index: 10;
        }

        header div {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .logo {
            transition: transform 0.3s ease, filter 0.3s ease;
        }

        .logo: hover {
            transform: scale(1.05);
            filter: brightness(1.2);
        }

        header h1 {
            font-size: 2.2rem;
            font-weight: 500;
            color: #ffffff;
            letter-spacing: 0.5px;
        }

        #menu {
          display: flex;
          justify-content: center; /* Center the menu items */
          align-items: center;
          width: 100%;
          padding: 10px 0;
          border-radius: 3px;       
          box-shadow: -3px -3px 7px #ffffff,
                 3px 3px 5px #ceced1,
                 inset -3px -3px 7px #ffffff,
                 inset 3px 3px 5px #ceced1;
          transition: all 0.3s ease;
            
            
        }
       
          #menu, #menu ul {
            list-style: none;
          }
        
          #menu > li {
            float: left;
            position: relative;
            border-right: 1px solid rgba(0,0,0,.1);
            box-shadow: 1px 0 0 rgba(255,255,255,.25);
            perspective: 1000px;
            
          }
        
          #menu > li:first-child {
            border-left: 1px solid rgba(255,255,255,.25);
            box-shadow: -1px 0 0 rgba(0,0,0,.1), 1px 0 0 rgba(255,255,255,.25);
          }
        
          #menu a {
            display: block;
            position: relative;
            z-index: 10;
            padding: 2px 4px 2px 4px;
            text-decoration: none;
            color: #0F0242;
            line-height: 1;
            font-weight: 600;
            font-size: 15px;
            letter-spacing: -.05em;
   
            text-shadow: 0 1px 1px rgba(255,255,255,.99);
            transition: all .25s ease-in-out;
          
          }
        
          #menu > li:hover > a {
            background: #0F0242;
            color: rgba(0,223,252,1);
            text-shadow: none;
          }
        
        #menu li ul {
          position: absolute;
          left: 0;
          z-index: 00;   /* higher than body, but below .help-button (1000) */
          width: 200px;
          padding: 0;
          opacity: 0;
          visibility: hidden;
          border-bottom-left-radius: 4px;
          border-bottom-right-radius: 4px;
          background: #0F0242;
          overflow: hidden;
          transform-origin: 50% 0%;
        }
        
        #menu li:hover ul {
          padding: 15px 0;
          background: white;
          opacity: 1;
          visibility: visible;
          box-shadow: 1px 1px 7px rgba(0,0,0,.5);
          animation: swingdown 1s ease forwards;
          z-index: 500; /* keep on top while animating */
        }
        
        .swingdown {
          animation: swingdown 1s forwards;
          position: relative;
          z-index: 1500;  /* brings dropdown above body content */
          transform-origin: top center;
        }

        
        @keyframes swingdown {
          0% {
            opacity: .99999;
            transform: rotateX(90deg);
          }
        
          30% {     
            transform: rotateX(-20deg) rotateY(5deg);
            animation-timing-function: ease-in-out;
          }
        
          65% {
            transform: rotateX(20deg) rotateY(-3deg);
            animation-timing-function: ease-in-out;
          }
        
          100% {
            transform: rotateX(0);
            animation-timing-function: ease-in-out;
          }
        }

    
      #menu li li a {
        padding-left: 5px;
        font-weight: 400;
        color: #ddd;
        text-shadow: none;
        border-top: dotted 1px transparent;
        border-bottom: dotted 1px transparent;
        transition: all .15s linear;
      }
    
      #menu li li a:hover {
        color: rgba(0,223,252,1);
        border-top: dotted 1px rgba(255,255,255,.15);
        border-bottom: dotted 1px rgba(255,255,255,.15);
        background: rgba(0,223,252,.02);
      }

        header h1 {
          font-size: 28px;
        }

        nav {
            background-color:white;
           
        }

        nav ul#menu {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 1rem;
            align-items: center;
        }

        nav ul#menu li {
            position: relative;
        }

        nav ul#menu li a {
            color: #0F0242;
            text-decoration: none;
            font-weight: bold;
        }

       

        nav ul#menu li ul {
            display: none;
            position: absolute;
            background-color: #0F0242;
            color: white;
            list-style: none;
            padding: 1.rem;
            top: 100%;
            left: 0;
            min-width: 350px;
        }

        nav ul#menu li:hover ul {
            display: block;
        }

        nav ul#menu li ul li a {
            color: #0F0242;
            display: block;
            padding: 0.5rem;
        }

     

     
        main {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
            
        }

        h2 {
            color: #0F0242;
            margin-bottom: 1rem;
            
        }

        h3 {
            color: #0F0242;
            margin-bottom: 0.5rem;
        }

        .footer-section h3 {
            color: white;
            margin-bottom: 0.5rem;
        }

        .points {
          padding: 0 20px;
          max-width: 900px;
          margin: 40px auto;
          text-align: center;
        }
    
        .points h2 {
          font-size: 36px;
         
          text-transform: uppercase;
          letter-spacing: 1px;
          position: relative;
        }
    
        .points h2::after {
          content: '';
          display: block;
          width: 50px;
          height: 3px;
          
          margin: 10px auto 0;
          border-radius: 5px;
        }
    
        .points p {
          font-size: 16px;
         
          margin-bottom: 30px;
          line-height: 1.8;
          max-width: 700px;
          margin-left: auto;
          margin-right: auto;
        }
    
        /* List Styling */
        .points ul {
          list-style: none;
          padding: 0;
          text-align: left;
          max-width: 800px;
          margin: 0 auto;
          line-height: 1.8;
        }
    
        .points ul li {
          
          margin: 10px 0;
          padding: 15px 20px;
          border-radius: 8px;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          display: flex;
          align-items: center;
        }
    
        .points ul li:hover {
          transform: translateY(-5px);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
          background-color: #bde4e8;
        }
    
        .points ul li strong {
          color: #1d7874;
          font-size: 26px;
          margin-right: 10px;
        }

        .leadership, .initiatives, .gallery-section, .points {
            margin-top: 2rem;
        }

        .leadership ul, .initiatives ul, .points ul {
            list-style: none;
        }

        .leadership ul li, .initiatives ul li {
            margin-bottom: 1rem;
        }

        .leadership ul li a, .initiatives ul li a {
            color: #00796b;
            text-decoration: none;
        }

        .leadership ul li a:hover, .initiatives ul li a:hover {
            text-decoration: underline;
        }

        .gallery-grid, .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 1rem;
        }

        .gallery-item a {
            display: block;
            position: relative;
            
            padding: 2px 4px 2px 4px;
            text-decoration: none;
            color: #0F0242;
            line-height: 1;
            font-weight: 600;
            font-size: 15px;
            letter-spacing: -.05em;
   
            text-shadow: 0 1px 1px rgba(255,255,255,.99);
            transition: all .25s ease-in-out;
          
          }
        .gallery-item {
            text-align: center;
        }

        .gallery-item img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .gallery-caption {
            margin-top: 0.5rem;
            font-weight: bold;
        }

        footer {
            background-color: #0F0242;
            color: white;
            padding: 2rem 1rem;
            text-align: center;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-section {
            margin: 1rem;
        }

        .footer-heading {
            font-size: 1.25rem;
            font-weight: bold;
            
            margin-bottom: 10px;
            border-bottom: 2px solid #ffcc00;
        }

        .footer-list {
            list-style: none;
        }

        .footer-list li {
            margin-bottom: 0.5rem;
        }

        .footer-link {
            color: #b3b3b3;
            text-decoration: none;
            display: block;
            font-size: 12px;
           
            transition: color 0.3s ease;
        }
    
        .footer-link:hover {
            color: rgba(0,223,252,1);
        }

        .footer-bottom {
            margin-top: 2rem;
            border-top: 1px solid #80cbc4;
            padding-top: 1rem;
        }

        .footer-logo img {
            max-width: 150px;
        }

        .scroll-to-top-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: none;
        }

        .scroll-to-top {
            background-color: #00796b;
            border: none;
            padding: 1rem;
            cursor: pointer;
            border-radius: 50%;
        }

        .scroll-to-top img {
            width: 20px;
            height: 20px;
        }
        
        nav ul#menu ul li a {
            display: block;
            padding: 10px 15px;
            color: white;
            text-decoration: none;
            font-size: 14px;
            transition: background-color 0.3s ease;
        }

        nav ul#menu ul li a:hover {
            background-color: #3f566d;
        }

        
        .help-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
         
            border: none;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s ease, transform 0.2s ease;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .help-button img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        .help-button:hover {
           
            transform: scale(1.1);
        }

        .help-panel {
            position: fixed;
            bottom: 90px;
            right: 20px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            width: 300px;
            padding: 20px;
            display: none;
            z-index: 1000;
            transition: opacity 0.3s ease, transform 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .help-panel.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .help-panel h3 {
            margin-top: 0;
            color: #2c3e50;
        }

        .help-panel p {
            color: #34495e;
            font-size: 14px;
        }

        .help-panel a {
            color: #3498db;
            text-decoration: none;
        }

        .help-panel a:hover {
            text-decoration: underline;
        }