* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

header, footer {
    background-color: #004080;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    position: relative;
}

nav {
    display: flex;
    justify-content: center;
    background-color: #003366;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: white;
    padding: 1rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
}

.banner {
    background: url('/img/m-m.jpg') no-repeat ;
    background-size: cover;
    color: #004080;
    text-align: center;
    /* margin-top: 10px; */
    /* padding: 6rem 0; */
    height:360px;
}


.banner h1 {
    margin: 0;
    font-size: 3.5rem;
}

.container {
    max-width: 1100px;
    margin: auto;
    /* padding: 2rem; */
    /* background: white; */
    /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
    /* border-radius: 8px; */
    margin-top: 2rem;
    column-gap: 5rem;
}

.section {
    margin: 2rem 0;
}

.section h2 {
    color: #004080;
    margin-bottom: 1rem;
}

.section p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

footer {
    color: #fff;
    text-align: center;
    padding: 40px 0;
    bottom: 0;
    width: 100%;
}

.footer-links {
    width: 100%;
    margin: 0;
}

footer .footer-links {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

footer .footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
}

footer .footer-links a:hover {
    text-decoration: underline;
}

footer p {
    margin: 0;
}

.formBox {
    background-color: #dfdfdf;
    padding: 2rem;
    margin-bottom: 1rem;
}

form label, form input, form textarea {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1rem;
}

form input[type="text"], form input[type="email"], form textarea {
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

form textarea {
    resize: vertical;
    height: 150px;
}

form input[type="submit"] {
    background-color: #004080;
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

form input[type="submit"]:hover {
    background-color: #003366;
}

.shine-animation {
    animation: shine 2s ease infinite; 
  }

.title {
    color: #004080;
}

.read-more {
    background-color: #0071bb;
    color: #fff;
    cursor: pointer;
}

.read-more:hover {
    background-color: #660000;
    color: #fff;
    cursor: pointer;
}

.msg {
    background-color:#0071bb;
    color: white;
    width: fit-content;
    padding: 20px 19px;
    text-align: center;
    justify-content: center;
    align-items: center;
    /* margin: 30px auto 300px; */
    line-height: 1.5;
}

/* Contact form */
#Contact {
    padding: 1% 20%;
    text-align: center;
  }
  
  .contact-heading {
    text-align: center;
  }
  
  .form-submit {
    text-align: center;
    padding: 40px 8px;
  }
  
  .form-btn {
    padding: 3px 20px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 25px;
  }
  

@media (max-width: 768px) {
    .banner {
        padding: 4rem 0;
    }
    .banner h2 {
        font-size: 2rem;
    }
    .banner p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .banner {
        height: 150px;
        padding: 3rem 0;
    }
    .banner h2 {
        font-size: 1.5rem;
    }
    .banner p {
        font-size: 0.9rem;
    }
}
