/* General Reset */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(to bottom, #D3D3D3, #FFFFFF);
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

/* Header Navigation */
header nav {
    background: #FFFFFF;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #D3D3D3;
}

header nav ul {
    display: flex;
    list-style: none;
}

header nav li {
    margin: 0 15px;
}

header nav a {
    text-decoration: none;
    color: #0A1828;
    font-size: 14px;
    font-weight: bold;
}

/* Main Section */
main {
    width: 70%;
    margin: auto;
    padding: 30px;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.welcome img, .content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px 0;
}


footer {
    background: #A9A9A9;
    color: #352929;
    text-align: center;
    padding: 20px;
    height: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;

}



footer p {
    margin: 0 10px;
}

footer a {
    color: #000000;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer-content {
    display: flex;
    justify-content: space-around; /* or space-between, or space-evenly */
    align-items: center;
  }
  
  .footer-section {
    margin: 10px; /* Adjust margin as needed */
  }

* {
    text-align:center;
}


/* Responsive Design */
@media (max-width: 768px) {
    main {
        width: 90%;
    }

  

    header nav ul {
text-align:center;
    }

}


img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
} 


/* Contact Form Section */
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
}

.contact-form label {
    margin-bottom: 5px;
    font-weight: bold;
    text-align: left;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form button {
    background-color: #0A1828;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #333333;
}

#motivation-image {
    max-width: 40%;
    height: auto;
    width:900px;
    display: block;
    margin: 0 auto; 
}

img, h2 {
    padding-top:20px;
}

h1 {
    padding-bottom:20px;
}

h2 {
    padding-bottom:20px;
}

p {
    text-align:left;
    padding-bottom:20px;
}

@media (max-width: 708px) {
    main {
        width: 90%;
    }

    
        .footer-content {
            font-size:13px;
             }

            }

             @media (max-width: 560px) {
                main {
                    width: 90%;
                }
            
                
                    .footer-content {
                        font-size:11px;
                         }
                        }

                        @media (max-width: 400px) {
                            main {
                                width: 90%;
                            }
                        
                            
                                .footer-content {
                                    font-size:8.7px;
                                     }
                                    }

                                    

 
