
        /* Your existing CSS - kept intact */
        * {
          margin: 0;
          padding: 0;
        }
        .contact {
          background-color: #01295c;
          color: whitesmoke;
          padding: 20px;
          width: 100%;
        }
        .contact ul {
          float: right;
        }
        .contact li {
          display: inline;
          padding: 10px;
          margin-bottom: 10px;
        }
        .navigation {
          background-color: #eff3f6;
          width: 100%;
          overflow: hidden;
        }
        .navigation li {
          display: inline;
          padding: 10px;
        }
        .navigation_left {
          width: 20%;
          float: left;
        }
        .navigation_right {
          width: 80%;
          float: left;
          text-align: center;
        }
        .navigation_right ul {
          margin-top: 20px;
        }
        .navigation_right a {
          text-decoration: none;
          color: #01295c;
          font-weight: bold;
          font-size: 20px;
        }
        .cards {
          width: 30%;
          float: left;
          margin-left: 30px;
        }
        .cards img {
          width: 100%;
        }

        .cards p {
          color: whitesmoke;
        }
        .content {
          background-color: #01295c;
          padding: 10px;
          overflow: hidden;
        }
        .footer {
          padding: 30px;
          text-align: center;
        }

        .dropbtn:hover {
          background-color: #009f63;
          
        }

        .dropdown-content {
          display: none;
          position: absolute;
          background-color: white;
          min-width: 160px;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          border-radius: 5px;
          z-index: 1;
        }

        .dropdown-content a {
          color: #333;
          padding: 10px 14px;
          text-decoration: none;
          display: block;
        }

        .dropdown-content a:hover {
          background-color: #f2f2f2;
        }

        /* Show menu on hover */
        .dropdown:hover .dropdown-content {
          display: inline-block;
        }
        .form1{
          justify-content: center;
          justify-items: center;
        }
        form{
          background: #01295c;
          margin-top: 100px;
          padding: 20px;
          color: white;
        }
        .form-text{
          color: white;
        }
        
        /* New CSS for improvements */
        body {
          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
          line-height: 1.6;
        }
        
        /* Contact section improvements */
        .contact {
          display: flex;
          justify-content: flex-end;
          padding: 12px 20px;
        }
        
        .contact ul {
          margin: 0;
        }
        
        .contact li {
          margin-left: 20px;
          font-size: 14px;
        }
        
        .contact li i {
          margin-right: 8px;
          color: #009f63;
        }
        
        /* Navigation improvements */
        .navigation {
          display: flex;
          align-items: center;
          padding: 10px 0;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navigation_left {
          display: flex;
          align-items: center;
          padding-left: 20px;
        }
        
        .navigation_left img {
          max-height: 60px;
          width: auto;
        }
        
        .navigation_right {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding-right: 20px;
        }
        
        .navigation_right ul {
          display: flex;
          margin: 0;
          padding: 0;
        }
        
        .navigation_right li {
          position: relative;
          margin: 0 5px;
        }
        
        .navigation_right a {
          font-size: 16px;
          padding: 8px 15px;
          border-radius: 4px;
          transition: all 0.3s ease;
        }
        
        .navigation_right a:hover {
          background-color: #01295c;
          color: white;
        }
        
        .dropdown {
          display: none;
        }
        
        /* Banner improvements */
        .banner {
          position: relative;
          overflow: hidden;
        }
        
        .banner img {
          width: 100%;
          height: 60vh;
          object-fit: cover;
        }
        
        .banner-overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(1, 41, 92, 0.6);
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          color: white;
          text-align: center;
          padding: 0 20px;
        }
        
        .banner-overlay h1 {
          font-size: 2.5rem;
          margin-bottom: 15px;
          text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .banner-overlay p {
          font-size: 1.2rem;
          max-width: 600px;
          margin-bottom: 20px;
        }
        
        .btn {
          display: inline-block;
          background-color: #009f63;
          color: white;
          padding: 12px 25px;
          border-radius: 5px;
          text-decoration: none;
          font-weight: bold;
          transition: all 0.3s ease;
        }
        
        .btn:hover {
          background-color: #007a4c;
          transform: translateY(-2px);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        /* Content improvements */
        .content {
          padding: 40px 20px;
        }
        
        .content h1 {
          text-align: center;
          margin-bottom: 30px;
          font-size: 2rem;
        }
        
        .cards-container {
          display: flex;
          justify-content: center;
          flex-wrap: wrap;
          gap: 20px;
        }
        
        .cards {
          width: 300px;
          background-color: rgba(255, 255, 255, 0.1);
          border-radius: 8px;
          overflow: hidden;
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          margin: 0;
        }
        
        .cards:hover {
          transform: translateY(-10px);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .cards img {
          height: 200px;
          object-fit: cover;
        }
        
        .cards p {
          padding: 15px;
          text-align: center;
          font-size: 1.2rem;
          font-weight: bold;
        }
        
        /* Footer improvements */
        .footer {
          background-color: #eff3f6;
          padding: 30px 20px;
          color: #01295c;
        }
        
        .footer ul {
          list-style: none;
          display: flex;
          justify-content: center;
          flex-wrap: wrap;
          gap: 20px;
        }
        
        .footer li {
          margin: 0;
        }
        
        .social-icons {
          display: flex;
          justify-content: center;
          gap: 15px;
          margin: 20px 0;
        }
        
        .social-icons a {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          width: 40px;
          height: 40px;
          background-color: #01295c;
          color: white;
          border-radius: 50%;
          text-decoration: none;
          transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
          background-color: #009f63;
          transform: translateY(-3px);
        }
        
        /* Responsive improvements */
        @media (max-width: 992px) {
          .navigation_right ul {
            display: none;
          }
          
          .dropdown {
            display: block;
          }
          
          .navigation_right {
            justify-content: flex-end;
          }
          
          .banner-overlay h1 {
            font-size: 2rem;
          }
          
          .banner-overlay p {
            font-size: 1rem;
          }
        }
        
        @media (max-width: 768px) {
          .contact {
            justify-content: center;
          }
          
          .contact ul {
            float: none;
          }
          
          .navigation {
            flex-direction: column;
            padding: 15px 0;
          }
          
          .navigation_left, .navigation_right {
            width: 100%;
            float: none;
            justify-content: center;
          }
          
          .navigation_left {
            margin-bottom: 10px;
          }
          
          .banner img {
            height: 40vh;
          }
          
          .banner-overlay h1 {
            font-size: 1.8rem;
          }
          
          .cards {
            width: 100%;
            max-width: 350px;
          }
        }
        
        @media (max-width: 576px) {
          .contact li {
            display: block;
            text-align: center;
            margin: 5px 0;
          }
          
          .banner-overlay h1 {
            font-size: 1.5rem;
          }
          
          .content h1 {
            font-size: 1.5rem;
          }
        }
