body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-image: url('back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header {
    background-color: #fff; /* Background color for header */
    padding: 10px;
    text-align: center;
}

.logo {
    max-width: 200px; /* Adjust as per your logo dimensions */
    height: auto;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    background-color: rgba(255, 255, 255, 0.9); /* Adjust background opacity */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.section {
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Adjust section background opacity */
    padding: 15px;
    border-radius: 8px;
}

h2 {
    color: #333;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
}

ul, ol {
    margin: 10px 0;
    padding-left: 20px;
}

ul li, ol li {
    margin-bottom: 5px;
}

p {
    margin-bottom: 10px;
}
button, input[type="button"] {
    background-color: #007BFF; /* Blue background color */
    color: white; /* White text color */
    border: none; /* Remove default border */
    padding: 10px 20px; /* Add padding */
    font-size: 16px; /* Adjust font size */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Change cursor on hover */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transition effects */
    text-align: center; /* Center text */
}

button:hover, input[type="button"]:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: scale(1.05); /* Slightly enlarge button on hover */
}

button:focus, input[type="button"]:focus {
    outline: none; /* Remove default focus outline */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); /* Add shadow on focus */
}
