
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 1.6;
}

header.banner-wrapper {
	margin: 10px 10px 10px 10px;
    padding: 10px;
    background: linear-gradient(90deg, #325892, white);
    border-radius: 12px;
	overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.banner-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    display: block;
}

main {
    padding: 2rem;
}

main section {
    margin-bottom: 3rem;
}

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

form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 400px;
}

form input, form textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form input:focus, textarea:focus {
    outline: none;
    border: 2px solid #66aaff;
    box-shadow: 0 0 5px rgba(102,170,255,0.5);
}

form button {
    padding: 0.7rem;
    background: #004080;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

form button:hover {
    background: #003060;
}

footer {
	margin: 10px 10px 10px 10px;
    background: linear-gradient(90deg, #325892, white);
    border-radius: 12px;
	overflow: hidden;
    text-align: left;
    padding: 1rem;
    display: flex;
    align-items: center;
}

footer a {
    margin-right: 10px;
}

footer a img {
    height: 40px;
    width: 40px;
    display: block;
	border-radius: 4px;
	background-color: transparent;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

footer a img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
}
