body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

nav {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1em 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 1em;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

section {
    padding: 2em;
}

.tab-section { 
	display: none; /* Hide all sections by default */ 
} 

.tab-section.active { 
	display: block; /* Show the active section */ 
}

form {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    margin: auto;
}

form input, form textarea {
    margin-bottom: 1em;
    padding: 0.5em;
    font-size: 1em;
}

form button {
    padding: 0.5em;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}

@media (max-width: 600px) {
    nav ul li {
        display: block;
        margin: 1em 0;
    }

    form {
        width: 100%;
    }
}
header {
    position: relative;
    width: 100%;
    height: 200px; /* Set the desired height */
    overflow: hidden;
}

header img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    transform: translate(-50%, -50%);
}

/* Ensuring the image is responsive */
@media (max-width: 600px) {
    header {
        height: 150px; /* Adjust height for smaller screens if needed */
    }
}

.right-align {
            text-align: right;
        }