body {
    background-color: #292929; /* Change to your desired color */
}

/*Header image*/
.header-banner {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.header-banner img {
    width: 100%; /* Full width of the screen */
    height: auto; /* Automatic height based on the image aspect ratio */
    display: block; /* Remove any space below the image */
    background-size: cover; /* Ensures the image covers the area */
    background-repeat: no-repeat; /* Prevents image from repeating */
}

/* Container styles */
.drivers-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    padding-top: 80px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Title and subtitle */
.drivers-container h1 {
    font-size: 3rem;
    color: #eeeeee;
    margin-bottom: 10px;
}

.drivers-container .subtitle {
    font-size: 1.7rem;
    color: #eeeeee;
    margin-bottom: 40px;
}

/* Card container */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

/* Individual printer card */
.card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.printer-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 250px;
    height: 290px; /* Keeping the original card height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    transition: transform 0.3s ease;
    text-align: center;
}

.printer-card:hover {
    transform: translateY(-5px);
}

.printer-card img {
    width: 150px; /* Adjusting image size */
    height: 130px;
    object-fit: contain;
    margin-bottom: 15px;
}

.printer-card h3 {
    font-size: 1.18rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px; /* Reduced space to make room for the button */
    color: #0056b3;
}

.full-width-img {
    width: 100%;   /* Ensures the image takes up the full width of its container */
    height: auto;  /* Maintains the aspect ratio */
}

.start-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    font-size: 1rem;
    margin-top: 10px;
}

.start-btn:hover {
    background-color: #0056b3;
}
