body {
    font-family:  Verdana, Geneva, Tahoma, sans-serif !important;
    margin: 0;
    padding: 0;
    color:#1f3964;
    background-color: #ffffff;
    font-size:1.1rem;
}

header {
   
    padding: 20px;
    text-align: center;
    color: #1f3964;
}

header h1 {
    margin: 0;
    font-size:1.1rem
}

section.hero {
   
    color: #1f3964;
    padding: 25px 20px;
    text-align: center;
}

section.hero h2 {
    font-size:1.1rem;
    margin-bottom: 20px;
}

section.hero p {
    font-size:1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.content {
    padding: 40px 20px;
    text-align: center;
}

.content h3 {
    font-size:1.1rem;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.1rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto 40px;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

input[type="text"], input[type="email"], textarea {
    width: 90%;
    padding: 5px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size:1.1rem;
}

button {
    
    color: #1f3964;
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    background: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
   /* transition: background-color 0.3s ease;*/
}
/*
button:hover {
    background-color: #004080;
    color:white
}
*/
footer {
    background-color: #ffffff;
    color: #1f3964    ;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

input::placeholder,textarea::placeholder{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

header img {
    max-width: 100%; /* Ensures the image never exceeds the screen width */
    height: auto;    /* Maintains the aspect ratio */
    display: block;
    margin: 0 auto;  /* Centers the image horizontally */
}
.supported-by{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5%;
}
.supported-by img{
    max-width: 15%;
    height: auto;
    display: block;
}

.supported-by-container h3{
    align-items: center;
    text-align: center;
    padding-bottom: 2%;
    font-size:1rem;
}

.footer p{
    font-size: 1.1rem;
}

/* Responsive styles */
@media only screen and (max-width: 768px) {
    header h1 {
        font-size: 1rem;
    }

    section.hero h2 {
        font-size: 1rem;
    }

    section.hero p {
        font-size: 1rem;
    }

    .content h3 {
        font-size: 1rem;
    }

    .content p {
        font-size: 1rem;
    }

    button {
        width: 100%;
    }
    header img {
        width: 80%; /* Scale down the logo on smaller screens */
    }
    .supported-by-container h3{
        font-size:1rem;
        padding-bottom: 1%;
    }
    .supported-by img{
        max-width: 25%;
    }
    .supported-by{
        gap: 9%;
    }
    .content{
        padding-top: 25px;
    }
    .footer p{
        font-size: 1rem;
    }
}

@media only screen and (max-width: 480px) {
    header h1 {
        font-size: 1rem;
    }

    section.hero h2 {
        font-size: 1rem;
    }

    form {
        width: 90%;
    }

    .content p {
        font-size: 1rem;
    }
    header img {
        width: 70%; /* Further scale down the logo on very small screens */
    }
    .supported-by-container h3{
        padding-bottom: 1%;
    }
    .supported-by img{
        max-width: 25%;
    }
    .supported-by{
        gap: 9%;
    }
    .content{
        padding-top: 25px;
    }
    .footer p{
        font-size: 1rem;
    }
}