body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

header {
    background-color: #2a9d8f;
    color: white;
    padding: 1rem;
    text-align: center;
}

nav {
    background-color: #264653;
    color: white;
    padding: 1rem;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

main {
    padding: 1rem;
}

section {
    margin-bottom: 2rem;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-top: 1rem;
}

form input, form textarea {
    padding: 0.5rem;
    margin-top: 0.5rem;
}

form button {
    background-color: #2a9d8f;
    color: white;
    border: none;
    padding: 0.5rem;
    margin-top: 1rem;
    cursor: pointer;
}

footer {
    background-color: #264653;
    color: white;
    text-align: center;
    padding: 1rem;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.image-button {
    width: 300px; /* Set your desired width */
    height: 300px;
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
    align-items: center;
}

.image-button img {
    width: 10px; /* Set your desired width */
    height: 10px; /* Set your desired height */
    display: block;
}

.header-background {
    background-image: url('images\madarsa-image-1.jpg'); /* Replace with your image file path */
    background-size: cover; /* Makes the image cover the entire header area */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    color: white; /* Adjust text color if necessary */
    padding: 20px; /* Adds spacing inside the header */
}

