body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
    box-sizing: border-box;
}

.container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 75%;
    max-width: 1700px;
    margin: auto;
}

h1 {
    background-color: #002341;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    line-height: 1.66;
    margin: 10px 0;
}

p b {
    font-weight: bold;
}

a {
    text-decoration: none;
    color: #002341;
 }

 a:hover {
    color: #002341;
    text-decoration: underline;
}

.logo {
    display: block;
    margin: 5px auto 20px;
    text-align: right;
}

.logo img {
    max-width: 200px;
}

hr {
    border-color: #c3c3c3;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.intro-text{
    color: #717171;
}

.blue-light{
    color: #009fe3;
} 
/*.hr-25-percent {
    width: 25%;
    text-align: left;
    float: left;
}
    */


    @media only screen and (max-width: 900px) {
        .intro-text{
            font-size: 15px ; 
        }
        
      }


      @media only screen and (max-width: 700px) {
        .logo {
            margin: 15px auto 20px;
        }
        
        .logo img {
            max-width: 175px;
        }
        
      }


    @media only screen and (max-width: 540px) {
        h1 {
          font-size: 20px !important;
        }
        

      }


/*
      form {
        margin: 20px;
        padding: 20px;
        border: 1px solid #ddd;
        border-radius: 5px;
        background-color: #f9f9f9;
        width: 100%;
        max-width: 500px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    form label {
        font-weight: bold;
        margin-bottom: 10px;
        text-align: center;
        width: 100%;
    }
    form input[type="text"] {
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-sizing: border-box;
    }
    form button {
        font-family: "Titillium Web", sans-serif;
        font-size: 18px;
        font-style: normal;
        font-weight: bold;
        line-height: 24px;
        text-align: center;
        color: #fff;
        padding: 14px 40px;
        border-radius: 28px;
        border: none;
        background-color: #002341;
        cursor: pointer;
        width: 100%;
        box-sizing: border-box;
    }
    form button:hover {
        background-color: #003366;
    }

    @media (min-width: 600px) {
        form {
            width: 80%;
        }
    }

    @media (min-width: 768px) {
        form {
            width: 60%;
        }
    }

    @media (min-width: 1024px) {
        form {
            width: 40%;
        }
    }
        */