body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #5f5f5f;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
}

.logo {
    display: block;
    margin: 0 auto;
    width: 150px;
}

.video-section video {
    display: block;
    margin: 20px auto;
    max-width: 100%;
}

.features {
    text-align: center;
    color: grey;
    margin: 20px 0;
}

.gallery {
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Creates 5 columns */
    gap: 10px; /* Adds spacing between images */
}

.gallery-grid img {
    width: 100%; /* Ensures images fit within their grid cells */
    height: auto; /* Maintains aspect ratio */
    object-fit: cover; /* Keeps images neatly cropped */
}


footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background-color: #e18400;
    color: white;
}
.manual-link {
    text-align: center;
    margin: 20px 0;
}

.manual-icon {
    width: 100px; /* Adjust the size of the image */
    height: auto;
    cursor: pointer;
}
.spacer {
    height: 40px; /* Adjust height as needed */
}

