/* Global CSS */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-image: url('../images/background.jpg'); /* Replace with your background image path */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Keeps the background fixed during scrolling */
    background-position: center;
    color: #333; /* Default text color */
}

.container {
    margin: 0 auto;
    padding: 20px;
    max-width: 1200px; /* Adjust for your layout */
}
