* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-image: url(images/bussines\ shake.jpg) no-repeat; /* Replace 'your-image.jpg' with the actual image path or URL */
    background-size: cover; /* Ensure the image covers the entire background */
    background-position: center; /* Center the background image */
    background-attachment: fixed; /* Keep the image fixed while scrolling */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 80%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.8); /* Transparent white box */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

header h1 {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 20px;
}

.introduction p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.features h2 {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 10px;
}

.features ul {
    list-style-type: none;
}

.features li {
    font-size: 1.2rem;
    margin: 10px 0;
}

footer p {
    font-size: 1rem;
    color: #666;
    margin-top: 20px;
}
	
