body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;

    /* background: linear-gradient(to right, #d3c1e5, #d5d5d5, #cfcfcf, #ddd, #bbb); */
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-image: url('Rolls\ Royce.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    width: 100%;

    /*  */



    background-color: rgba(0, 0, 0, 0.5);


    opacity: 0.9;


    margin: 0;
    height: 100vh;


    /*  */

    .content {
        color: rgb(255, 255, 255);
        text-align: center;
        padding: 50px;
        background-color: rgba(0, 0, 0, 0.1);
        margin: 20px;
        border-radius: 8px;
    }

}

.container {
    width: 80%;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 30px;
    margin-bottom: 30px;
}

header {
    background-color: #000000d4;
    color: white;
    padding: 15px;
    text-align: center;
    border-radius: 8px 8px 0 0;
}

header h1 {
    margin: 0;
    font-size: 24px;
}

.highlight {
    color: rgb(255, 0, 0);
}

.about,
.features,
.contact,
.faq {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.about h2,
.features h2,
.contact h2,
.faq h2 {
    margin-top: 0;
}

.about img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 10px;
}

.features ul {
    list-style-type: square;
    padding-left: 20px;
}

.contact form {
    display: flex;
    flex-direction: column;
}

.contact label {
    margin: 5px 0;
}

.contact input,
.contact textarea {
    padding: 8px;
    margin: 5px 0;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.contact button {
    background-color: green;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.contact button:hover {
    background-color: #2a2a2a;
}

.faq details {
    margin: 10px 0;
}

footer {
    background-color: #361212;
    color: rgb(255, 254, 254);
    text-align: center;
    padding: 10px;
    border-radius: 0 0 8px 8px;
    margin-top: 20px;
}