/* General Reset for Typography */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Default body font */
    line-height: 1.6;
    background-color: #f4f4f4;
    font-size: 16px;
    overflow-x: hidden;
  }

  /* Header font for a professional, modern feel */
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Arial', sans-serif; /* Headers with a clean and modern look */
    font-weight: bold;
  }

  /* Subheading font for a more formal appearance */
  h2, h3 {
    font-family: 'Poppins', 'Roboto', sans-serif;
    font-weight: 600;
  }

  /* Paragraph text */
  p {
    font-family: 'Roboto', 'Arial', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
  }

  /* Navigation and link styles */
  a {
    font-family: 'Roboto', 'Helvetica', sans-serif;
    text-decoration: none;
    color: #0056b3;
  }

  /*a:hover {*/
  /*  color: #003d73;*/
  /*}*/

  /* Buttons and actionable items */
  button, input[type="submit"] {
    font-family: 'Roboto', 'Arial', sans-serif;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 4px;
    border: none;
    background-color: #0056b3;
    cursor: pointer;
  }

  /*button:hover {*/
  /*  background-color: #003d73;*/
  /*}*/

  /* Form fields */
  input, select, textarea {
    font-family: 'Roboto', 'Arial', sans-serif;
    border: 1px solid #ccc;
  }

  /* Footer typography */
  footer {
    font-family: 'Roboto', 'Arial', sans-serif;
    font-size: 0.9rem;
    color: #777;
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
  }

  /* Importing Google Fonts */
  @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Montserrat:wght@400;600;700&family=Poppins:wght@400;600;700&display=swap');
