/* General Reset */
body, h1, h2, h3, p, ul, li, a, input, button, textarea {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #a7acae; /* Light blue background color */
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header */
  header {
    background: white;
    color: rgb(11, 94, 162);
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    margin-left: 20px;
  }

  .logo-image {
    width: 200px;
    height: auto;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
  }
  
  .nav-links li {
    margin-right: 20px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  /* Hero Section */
  .hero-section {
    color: #0c1ea5;
    text-align: center;
    padding: 100px 20px;
  }

  .hero-content {
    h2 {
        font-size: 48px;
        -webkit-text-stroke: 2px black;
    }
    p {
        font-size: 36px;
        -webkit-text-stroke: 1px black;
    }
  }
  
  /* About Section */
  .about-section, .services-section {
    padding: 50px 20px;
    text-align: center;
  }
  
  .service-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .service-card {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 5px;
    flex: 1 1 calc(33% - 20px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .service-card h3 {
    margin-bottom: 10px;
  }

  .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
 
  .jotform-button {
    display: inline-block;
    background-color: #003366;
    color: white;
    font-size: 14px;
    padding: 10px 20px;
    margin-bottom: 20px;
    border: none;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.jotform-button:hover {
    background-color: #002244;
    transform: scale(1.05);
}

  /* Contact section */
  .contact-section {
    padding: 50px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
  }

  #contact-form {
    display: flex;
    flex-direction: column; /* Align fields vertically */
    align-items: center; /* Center fields horizontally */
    gap: 15px; /* Spacing between fields */
}

.text-input,
#contact-form textarea {
    width: 100%; /* Make all fields the same width */
    max-width: 400px; /* Restrict width for better aesthetics */
    padding: 10px; /* Add padding for input height consistency */
    border: 1px solid #ccc; /* Add a border */
    border-radius: 5px; /* Slightly rounded corners */
    font-size: 16px; /* Uniform font size */
}

#contact-form textarea {
    height: 120px; /* Fixed height for the textarea */
    resize: none; /* Prevent resizing for consistency */
}

  .contact-submit {
    background: #003366;
    color: white;
    font-size: 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    padding: 10px 20px;
    height: 60px;
    width: 200px;
}

  .sms-consent {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    font-size: 14px;
    line-height: 1.6;
  }

  .sms-consent h3 {
    margin-bottom: 10px;
    color: #0056b3;
    font-size: 16px;
  }

  .sms-consent p {
    margin-bottom: 10px;
  }

  .sms-consent ul {
    list-style: disc;
    list-style-position: inside; /* Ensures bullets are inside the list and aligned with the text */
    text-align: center; /* Centers the text */
    margin: 0 auto; /* Centers the entire list block */
    padding: 0;
    width: fit-content; /* Shrinks the list to fit its content */
}

.sms-consent ul li {
    display: block; /* Ensures list items are treated as block elements */
    text-align: center; /* Centers the text within each list item */
    margin-bottom: 5px; /* Adds space between items */
}

  .sms-consent label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
  }

  .sms-consent a {
    color: #0056b3;
    text-decoration: underline;
  }

  .sms-consent a:hover {
    text-decoration: none;
  }
  
  /* Footer */
  footer {
    background: #003366;
    color: white;
    display: flex; /* Enables flexbox layout */
    justify-content: space-between; /* Positions items at the edges */
    align-items: center; /* Vertically centers content */
    padding: 20px;
  }

  .footer-left {
    flex: 1; /* Ensures the left content takes its space */
    text-align: left; /* Aligns the text to the left */
  }

  .footer-right {
    flex: 1; /* Ensures the right content takes its space */
    text-align: right; /* Aligns the text to the right */
  }

  .footer-right a {
    color: #007BFF; /* Link color */
    text-decoration: none; /* Removes underline */
    margin: 0 5px; /* Spacing between links */
  }

  .footer-right a:hover {
    text-decoration: underline; /* Underline on hover */
  }

  
  /* Responsive Design */
  @media (max-width: 768px) {
    .service-grid {
      flex-direction: column;
    }
  
    header {
      flex-direction: column;
    }
  
    .nav-links {
      flex-direction: column;
      align-items: center;
    }

    .hero-content {
        -webkit-text-stroke: 1px black;
        text-shadow: 
            -2px -2px 0 black, 
             2px -2px 0 black, 
            -2px  2px 0 black, 
             2px  2px 0 black;
        h2 {
            font-size: 36px;
        }
        p {
            font-size: 24px;
        }
      }
  }

  /* Large screens (e.g., desktops) */
  @media (min-width: 768px) {
    .hero-section {
        height: 500px
    }
  }
  