     body {
         margin: 0;
         font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
         background-color: #f9f9f9;
         color: #333;
     }

     header {
         background: linear-gradient(90deg, #1bc373, #15c97f);
         padding: 5px 20px;
         display: flex;
         justify-content: space-between;
         align-items: center;
         color: white;
         position: sticky;
         top: 0;
          z-index: 1000;
     }

     .logo img {
  height: 70px;
  width: auto;
}


     nav {
         display: flex;
         align-items: center;
         gap: 20px;
     }

     nav a {
         color: white;
         text-decoration: none;
         font-weight: 500;
     }

     nav a.button {
         padding: 8px 15px;
         border-radius: 5px;
         background-color: #fd5e53;
     }

     nav a.download {
         background-color: #0984e3;
     }

     .dropdown {
         position: relative;
     }

     .dropdown-content {
         display: none;
         position: absolute;
         background-color: white;
         top: 100%;
         left: 0;
         min-width: 200px;
         box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
         z-index: 999;
     }

     .dropdown-content a {
         color: #333;
         padding: 10px 15px;
         display: block;
         text-decoration: none;
     }

     .dropdown-content a:hover {
         background-color: #f1f1f1;
     }

     .dropdown:hover .dropdown-content {
         display: block;
     }

     .container {
         max-width: 1200px;
         margin: 60px auto;
         padding: 0 20px;
     }

     h1 {
         font-size: 34px;
         font-weight: 700;
         margin-bottom: 20px;
         text-align: center;
         color: #2d3436;
     }

     p {
         font-size: 17px;
         line-height: 1.7;
         margin-bottom: 20px;
         color: #444;
         text-align: justify;

     }

     .btn-group {
         margin-top: 30px;
         display: flex;
         justify-content: center;
         flex-wrap: wrap;
         gap: 20px;
     }

     .btn-group a {
         padding: 14px 30px;
         font-size: 16px;
         font-weight: 600;
         border-radius: 8px;
         text-decoration: none;
         color: white;
         transition: 0.3s;
         box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
         text-align: center;
     }

     .register-btn {
         background-color: #15c97f;
     }

     .register-btn:hover {
         background-color: #15c97f;
     }

     .download-btn {
         background-color: #0984e3;
     }

     .download-btn:hover {
         background-color: #076dbd;
     }

     .login-btn {
         background-color: #d63031;
     }

     .login-btn:hover {
         background-color: #c0392b;
     }

     /* Mobile Styles */
     .menu-toggle {
         display: none;
         flex-direction: column;
         cursor: pointer;
     }

     .bar {
         height: 3px;
         width: 25px;
         background-color: white;
         margin: 4px 0;
     }

     @media (max-width: 768px) {
         nav {
             display: none;
             flex-direction: column;
             background-color: #00b894;
             position: absolute;
             top: 60px;
             right: 0;
             width: 100%;
             padding: 15px 25px;
         }

         nav.show {
             display: flex;
         }

         .menu-toggle {
             display: flex;
         }

         .dropdown-content {
             position: static;
             box-shadow: none;
             background-color: #00b894;
         }

         .dropdown-content a {
             color: white;
         }
     }

     body img  {
  display: block;
  margin: 10px auto;
  border-radius: 5px;
}

.images-main {
     display: block;
  margin: 10px auto;
  border-radius: 5px;
  height: auto;
  width: 300px;
}

@media (max-width: 480px) {
  img {
    width: 90%; 
    height: auto; 
  }
}
     h2 {

         color: #0d0e0d;
         margin-bottom: 30px;
     }

     .table-container {
         max-width: 1200px;
         margin: 0 auto;
         background-color: #fff;
         border-radius: 10px;
         box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
         overflow: hidden;
     }

     table {
         width: 100%;
         border-collapse: collapse;
     }

     thead {
         background-color: #eafaf5;
         color: rgb(26, 25, 25);
     }

     th,
     td {
         padding: 15px 20px;
         text-align: left;
         font-size: 16px;
     }

     tbody tr:nth-child(odd) {
         background-color: #f6fdfa;
     }

     tbody tr:nth-child(even) {
         background-color: #eafaf5;
     }

     @media (max-width: 600px) {

         th,
         td {
             padding: 12px;
             font-size: 15px;
         }

         .table-container {
             margin: 20px;
         }
     }


     ul {
         width: 100%;
         max-width: 1100px;
         padding: 10px;
         line-height: 1.6rem;
         list-style-type: disc;
         margin: 0 auto;
     }

     li {
         margin-bottom: 15px;
     }

     /* Mobile responsiveness */
     @media (max-width: 600px) {
         ul {
             padding: 20px;
             width: 95%;
         }

         li {
             font-size: 1rem;
         }
     }



     .faq-container {
         max-width: 1100px;
         margin: auto;
         background: #ffffff;
         padding: 30px;
         border-radius: 12px;
         box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
         margin-top: 70px;
     }

     
        .faq-header {
            font-size: 24px;
            color: #2c3e50;
            margin-bottom: 20px;
            border-bottom: 2px solid #3498db;
            padding-bottom: 5px;
        }
        .faq-question {
            font-weight: bold;
            color: #2980b9;
            margin-top: 15px;
        }
        .faq-answer {
            margin-bottom: 15px;
            color: #2f3640;
        }

     h2 {

         color: #2c3e50;
         margin-bottom: 30px;
     }

     details {
         background: #f9f9f9;
         border: 1px solid #ddd;
         border-radius: 8px;
         margin-bottom: 15px;
         padding: 15px;
         cursor: pointer;
     }

     summary {
         font-weight: bold;
         font-size: 20px;
         color: #1a73e8;
         outline: none;
     }

     details[open] summary {
         color: #0d47a1;
     }

     details p {
         margin-top: 10px;
         font-size: 18px;
         color: #333;
     }


     /* about */


     .container {
         max-width: 1200px;
         margin: 0 auto;
         padding: 20px;
         box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
         border-radius: 10px;
         margin-top: 20px;
         margin-bottom: 20px;
     }

     h1 {

         text-align: center;
         margin-bottom: 30px;
         font-size: 2.5em;
         border-bottom: 3px solid #3498db;
         padding-bottom: 15px;
     }

     h2 {

         margin-top: 30px;
         margin-bottom: 15px;
         font-size: 1.6em;
         border-left: 4px solid #3498db;
         padding-left: 15px;
     }

     p {
         margin-bottom: 15px;
         text-align: justify;
         font-size: 17px;
         line-height: 1.7;
     }

     ul {
         margin: 15px 0;
         padding-left: 30px;
     }

     li {
         margin-bottom: 8px;
         font-size: 17px;
     }

     .contact-email {
         background-color: #ecf0f1;
         padding: 10px;
         border-radius: 5px;
         font-weight: bold;
         color: #2980b9;

         margin: 15px 0;
     }

     .highlight-box {
         background-color: #e8f6f3;
         border-left: 5px solid #1abc9c;
         padding: 20px;
         margin: 20px 0;
         border-radius: 0 5px 5px 0;
     }

     .safety-section {
         background-color: #fdf2e9;
         border-left: 5px solid #e67e22;
         padding: 20px;
         margin: 20px 0;
         border-radius: 0 5px 5px 0;
     }

     .future-plans {
         background-color: #eaf2f8;
         border-left: 5px solid #3498db;
         padding: 20px;
         margin: 20px 0;
         border-radius: 0 5px 5px 0;
     }

     .thank-you {
         background-color: #f4ecf7;
         border-left: 5px solid #9b59b6;
         padding: 20px;
         margin: 20px 0;
         border-radius: 0 5px 5px 0;
         text-align: center;
     }

     @media (max-width: 768px) {
         .container {
             margin: 10px;
             padding: 15px;
             border-radius: 5px;
         }

         h1 {
             font-size: 2em;
         }

         h2 {
             font-size: 1.5em;
         }

         p,
         li {
             font-size: 1em;
         }
     }

     /* contact */

     .contact-email {
         background-color: #ecf0f1;
         padding: 10px;
         border-radius: 5px;
         font-weight: bold;
         color: #2980b9;

         margin: 15px 0;
     }

     .highlight-box {
         background-color: #ecf0f1;
         border-left: 5px solid #1abc9c;
         padding: 20px;
         margin: 20px 0;
         border-radius: 0 5px 5px 0;
     }

     .safety-section {
         background-color: #ecf0f1;
         border-left: 5px solid #e67e22;
         padding: 20px;
         margin: 20px 0;
         border-radius: 0 5px 5px 0;
     }

     .future-plans {
         background-color: #ecf0f1;
         border-left: 5px solid #3498db;
         padding: 20px;
         margin: 20px 0;
         border-radius: 0 5px 5px 0;
     }

     .thank-you {
         background-color: #ecf0f1;
         border-left: 5px solid #9b59b6;
         padding: 20px;
         margin: 20px 0;
         border-radius: 0 5px 5px 0;
         text-align: center;
     }

     @media (max-width: 768px) {
         .container {
             margin: 10px;
             padding: 15px;
             border-radius: 5px;
         }

         h1 {
             font-size: 2em;
         }

         h2 {
             font-size: 1.5em;
         }

         p,
         li {
             font-size: 1em;
         }
     }

     /* footer */

     /* Footer styles */
     .footer {
    background-color: #15c97f;
    color: white;
    padding: 30px 15px;
    margin-top: 60px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer-container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.footer-links {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 12px;
    font-weight: 600;
    transition: color 0.3s, text-decoration 0.3s;
    font-size: 16px;
}

.footer-links a:hover {
    color: #073d29;
    text-decoration: underline;
}

.footer-copy {
    font-size: 14px;
    opacity: 0.9;
    text-align: center;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .footer {
        padding: 20px 10px;
    }

    .footer-links a {
        margin: 5px 8px;
        font-size: 14px;
    }

    .footer-copy {
        font-size: 12px;
    }
}
