body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('Background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: rgba(231, 76, 60, 0.9); /* Semi-transparent background */
    color: white;
    padding: 1em 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

header img {
    height: 50px;
    width: auto;
}

nav {
    background-color: rgba(243, 156, 18, 0.9); /* Semi-transparent background */
    padding: 1em;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

.container {
    margin: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Light background for readability */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.section {
    margin-bottom: 30px;
}

.section h2 {
    color: #e74c3c;
}

footer {
    background-color: rgba(51, 51, 51, 0.9); /* Semi-transparent background */
    color: white;
    text-align: center;
    padding: 1em 0;
    margin-top: auto;
}
