 body {
     font-family: 'Raleway', sans-serif;
     margin: 0;
     padding: 0;
     background-color: #f7f9fb;
     color: #2a2a2a;
 }

 header {
     background-color: #00457c;
     color: white;
     text-align: center;
     padding: 80px 20px 60px;
 }

 header h1 {
     font-size: 3rem;
     margin-bottom: 10px;
 }

 header p {
     font-size: 1.2rem;
     max-width: 600px;
     margin: auto;
 }

 nav {
     background-color: #ffffff;
     display: flex;
     justify-content: center;
     gap: 25px;
     padding: 20px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
     font-weight: 600;
 }

 nav a {
     text-decoration: none;
     color: #00457c;
 }

 .hero {
     padding: 80px 20px;
     text-align: center;
     background-color: #e6f0fa;
 }

 .hero h2 {
     font-size: 2.5rem;
     margin-bottom: 20px;
 }

 .hero p {
     font-size: 1.1rem;
     max-width: 700px;
     margin: auto;
     margin-bottom: 30px;
 }

 .hero button {
     background-color: #00457c;
     color: white;
     border: none;
     padding: 15px 30px;
     font-size: 1rem;
     border-radius: 5px;
     cursor: pointer;
 }

 .section {
     max-width: 1000px;
     margin: 60px auto;
     padding: 0 20px;
     text-align: center;
 }

 .section h2 {
     font-size: 2rem;
     margin-bottom: 40px;
     color: #00457c;
 }

 .card-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 30px;
 }

 .card {
     background-color: white;
     padding: 30px 20px;
     border-radius: 12px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
 }

 .card h3 {
     font-size: 1.2rem;
     margin-bottom: 10px;
     color: #00457c;
 }

 .card p {
     font-size: 0.95rem;
     color: #444;
 }

 footer {
     background-color: #003a6d;
     color: white;
     text-align: center;
     padding: 30px 20px;
     font-size: 0.9rem;
     margin-top: 60px;
 }

 nav {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1000;
 }

 header {
     margin-top: 120px;
 }

 nav {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1000;
     background: #ffffff;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
     display: flex;
     justify-content: center;
     gap: 25px;
     padding: 20px 10px;
     font-weight: 600;
     border-bottom: 2px solid #e0e0e0;
 }

 nav a {
     color: #00457c;
     text-decoration: none;
     padding-bottom: 5px;
     position: relative;
 }

 nav a::after {
     content: '';
     display: block;
     width: 0;
     height: 2px;
     background: #00457c;
     transition: width 0.3s;
     position: absolute;
     left: 0;
     bottom: 0;
 }

 nav a:hover::after {
     width: 100%;
 }

 header {
     margin-top: 120px;
 }

 nav {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1000;
     background: #ffffff;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
     display: flex;
     justify-content: center;
     gap: 25px;
     padding: 20px 10px;
     font-weight: 600;
     border-bottom: 2px solid #e0e0e0;
 }

 nav a {
     color: #00457c;
     text-decoration: none;
     padding-bottom: 5px;
     position: relative;
 }

 nav a:hover {
     border-bottom: 2px solid #00457c;
     transition: border-color 0.3s;
 }

 header {
     margin-top: 120px;
 }

 nav a {
     color: #00457c;
     text-decoration: none;
     position: relative;
     transition: color 0.3s ease;
 }

 nav a::after {
     content: "";
     display: block;
     width: 0;
     height: 2px;
     background: #f25c05;
     /* Sleek orange accent color */
     transition: width 0.3s ease;
     position: absolute;
     left: 0;
     bottom: -3px;
 }

 nav a:hover::after {
     width: 100%;
 }

 nav a:hover {
     color: #f25c05;
 }

 nav a::after {
     content: "";
     display: block;
     width: 0;
     height: 1px;
     /* thinner underline */
     background: #f25c05;
     transition: width 0.3s ease;
     position: absolute;
     left: 0;
     bottom: -3px;
 }

 nav a:hover::after {
     width: 100%;
 }

 nav a:hover {
     color: #f25c05;
 }

 /* Modal styles */
 .modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.6);
     justify-content: center;
     align-items: center;
     z-index: 2000;
 }

 .modal-content {
     background: #fff;
     padding: 2rem;
     border-radius: 8px;
     min-width: 1000px;
     text-align: center;
 }

 .modal-content h2 {
     margin-bottom: 1rem;
 }

 .close-modal {
     background: #f25c05;
     color: #fff;
     border: none;
     padding: 10px 20px;
     cursor: pointer;
     border-radius: 4px;
 }

 nav a::after {
     content: "";
     display: block;
     width: 0;
     height: 1px;
     /* thinner underline */
     background: lightgreen;
     transition: width 0.3s ease;
     position: absolute;
     left: 0;
     bottom: -3px;
 }

 nav a:hover::after {
     width: 100%;
 }

 nav a:hover {
     color: lightgreen;
 }

 /* Modal styles */
 .modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.6);
     justify-content: center;
     align-items: center;
     z-index: 2000;
 }

 .modal-content {
     background: #fff;
     padding: 2rem;
     border-radius: 8px;
     max-width: 500px;
     text-align: center;
 }

 .modal-content h2 {
     margin-bottom: 1rem;
 }

 .close-modal {
     background: #f25c05;
     color: #fff;
     border: none;
     padding: 10px 20px;
     cursor: pointer;
     border-radius: 4px;
 }

 nav a::after {
     content: "";
     display: block;
     width: 0;
     height: 1px;
     background: lightgreen;
     transition: width 0.3s ease;
     position: absolute;
     left: 0;
     bottom: -3px;
 }

 nav a:hover::after {
     width: 100%;
 }

 nav a:hover {
     color: lightgreen;
 }

 /* Full-width dropdown modal styles */
 .modal {
     display: none;
     position: absolute;
     top: 60px;
     /* below the navbar */
     left: 0;
     width: 100%;
     background: #ffffff;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     z-index: 999;
     animation: slideDown 0.3s ease forwards;
 }

 @keyframes slideDown {
     from {
         opacity: 0;
         transform: translateY(-10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 a.get-started-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     background: #22e37d;
     /* Green background */
     color: #000000;
     /* Black text */
     padding: 12px 28px;
     border-radius: 20px;
     text-decoration: none;
     font-weight: 600;
     font-size: 1rem;
     transition: background 0.3s ease, box-shadow 0.3s ease;
 }

 a.get-started-btn:hover {
     background: #1fd16e;
     /* Slightly darker green on hover */
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
 }


 .modal-content {
     padding: 1rem 2rem;
     text-align: center;
 }

 .modal-content h2 {
     margin-bottom: 0.5rem;
     font-size: 1.2rem;
     color: #00457c;
 }

 .modal-content p {
     font-size: 0.95rem;
     color: #444;
 }

  .floating-form {
    position: fixed;
    top: 450px;
    bottom: 20px;
    right: -10px;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 9999;
  }

  .floating-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .floating-form input[type="text"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100px;
  }

  .floating-form button {
    background-color: #22e37d;
    border: none;
    padding: 10px;
    border-radius: 6px;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .floating-form button:hover {
    background-color: #1fd16e;
  }

 .close-modal {
     background: #f25c05;
     color: #fff;
     border: none;
     padding: 5px 15px;
     cursor: pointer;
     border-radius: 4px;
     margin-top: 10px;
 }

 nav a::after {
     content: "";
     display: block;
     width: 0;
     height: 1px;
     background: lightgreen;
     transition: width 0.3s ease;
     position: absolute;
     left: 0;
     bottom: -3px;
 }

 nav a:hover::after {
     width: 100%;
 }

 nav a:hover {
     color: lightgreen;
 }

 /* Overlay modal styles (30% height) */
 .modal {
     display: none;
     position: fixed;
     top: 60px;
     /* just below navbar */
     left: 0;
     width: 100%;
     height: 30vh;
     background: #ffffff;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     z-index: 2000;
     animation: slideDown 0.3s ease forwards;
 }

 @keyframes slideDown {
     from {
         opacity: 0;
         transform: translateY(-10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .modal-content {
     padding: 1rem 2rem;
     text-align: center;
 }

 .modal-content h2 {
     margin-bottom: 0.5rem;
     font-size: 1.2rem;
     color: #00457c;
 }

 .modal-list-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 40px;
     margin: 20px 0;
 }

 .modal-list-container ul {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .modal-list-container a {
     color: #000;
     text-decoration: none;
     font-weight: 400;
     font-size: 0.95rem;
     transition: color 0.2s ease;
 }

 .modal-list-container a:hover {
     color: #22e37d;
     text-decoration: underline;
 }

 .modal-list-container h2,
 .modal-list-container h3 {
     margin: 0;
     margin-bottom: 10px;
     /* consistent spacing below headers */
     font-size: 1rem;
     color: #666;
     text-transform: uppercase;
 }

 body {
     font-family: 'Roboto', sans-serif;
 }

 .header-buttons a {
     display: inline-block;
     padding: 12px 24px;
     background: linear-gradient(135deg, #22e37d, #1fd16e);
     color: #000;
     font-weight: 600;
     border-radius: 30px;
     text-decoration: none;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     transition: background 0.3s, transform 0.3s;
 }

 .header-buttons a:hover {
     background: linear-gradient(135deg, #1fd16e, #22e37d);
     transform: translateY(-2px);
 }

 .modal-content h3 {
     margin-bottom: 0.5rem;
     font-size: 1.2rem;
     color: #00457c;
 }

 .modal-content p {
     font-size: 0.95rem;
     color: #444;
 }

 .close-modal {
     background: #f25c05;
     color: #fff;
     border: none;
     padding: 5px 15px;
     cursor: pointer;
     border-radius: 4px;
     margin-top: 10px;
 }

 #navDropdownModal a:hover {
     text-decoration: underline;
 }