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

body {
    font-family: Arial, sans-serif;
    background-image: url(images/bussines\ shake.jpg) no-repeat; /* Replace with your image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: rgba(57, 152, 106, 0.338);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.about-container {
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent black box */
    padding: 40px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

header h1 {
    font-size: 2.5rem;
    color: #00b4d8;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #f0f0f0;
}

footer p {
    font-size: 0.9rem;
    color: #ddd;
}