/* Ensure the body takes full height */	
html, body {	
    height: 100%;	
}	
 	
/* Set the body to use flexbox */	
body {	
    display: flex;	
    flex-direction: column;	
}	
 	
/* Make the main content area expand to fill the available space */	
main {	
    flex: 1;	
}
/* Typography */
body {
    font-family: 'Work Sans', 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
}

.ingress {
    font-size: 23px;
    font-weight: normal;
}

h2 {
    font-size: 32px;
    font-weight: bold;
}

p {
    font-size: 18px;
    font-weight: normal;
}

h3 {
    font-size: 27px;
    font-weight: bold;
}

a {
	color:#000;
}

/* Header */
header {
    width: 100%;
    background-color: #23557D;
    padding: 20px 0;
}

.header-content {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.header-content img {
    display: block;
    height: auto !important;
    max-height: 100% !important;
    max-width: 100% !important;
    width: 60px !important;
}

 .header-content h1 {
    font-size: 40px;
       font-weight: 700;
	   color:#fff;
	   padding-left:2em;
}

/* Main Content */
main {
    width: 100%;
    background-color: #F2F2F8;
    padding: 20px 0;
}

.content {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.box {
	width:770px;
    max-width: 80%;
    height: auto;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin: auto; /* Center the box */
}

.box-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.box-header img {
    height: 30px;
}

/* Footer */
footer {
    width: 100%;
    background-color: #463C3C;
    color: #fff;
    padding: 20px 0;
}

.footer-content {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
}

.footer-content img {
    height: 80px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links .column {
    display: flex;
    flex-direction: column;
}

.footer-links .column ul {
    list-style: none;
    padding: 5px;
    margin: 0;
}

.footer-links .column ul li {
    margin-bottom: 10px;
}

.footer-links .column ul li a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-links .column ul li a svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 1000px) {
    .header-content, .content, .footer-content {
        width: 90%;
    }

	.header-content h1 {
    font-size: 20px;
	}

	h2{
		font-size:25px;
	}

    .box {
        width: 100%; /* Ensure the box takes full width on smaller screens */
    }

footer {
	padding:10px;
	}

.footer-content img {
    height: 60px;
	padding:10px;
}

}
@media (max-width: 800px) {
footer .footer-links {
    display: flex;
    flex-direction: column;
    align-items: left;
  }
}