/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* Set a background gradient */
body {
    background: linear-gradient(to top, #f3f3f3, #dcdcdc); /* Gradient */
    background: -webkit-linear-gradient(top, #f3f3f3, #dcdcdc); /* Gradient for older browsers */
}

/* Container for content */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 2px;
}

/* Header styles */
header {
    background: linear-gradient(to top, #5e5e5e, #333); /* Dark gray background */
    color: #fff; /* Text color */
    padding: 10px 0;
}

header h1 a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
}

header nav ul {
    list-style: none;
}

header nav ul li {
    display: inline;
    margin-right: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* Hero section styles */
.hero {
    background: linear-gradient(to bottom, #5e97bd, #3f6a8a); /* Blue gradient background */
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

hero h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

/* Product section styles */
.products {
    background: linear-gradient(to bottom, #eeeeee, #e0e0e0);
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

.product {
    display: flex; /* Use flexbox to create a side-by-side layout */
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(to bottom, #ffffff, #fafafa);
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    height: 100%;
}

.product-image {
    margin-right: 20px; /* Add spacing between image and text */
}

.product-image img {
    width: 100px;
    height: 130px;
    border-radius: 0px;
}

.hardware-image {
    margin-right: 20px; /* Add spacing between image and text */
}

.hardware-image img {
    width: 160px;
    height: 110px;
    border-radius: 0px;
}

.product-info {
    flex: 2; /* Expand to take up available space */
}

.product .download-button {
    position: relative;
    bottom: -105px;
    left: 10px;
    background: linear-gradient(to bottom, #4a90e2, #3d7cc6);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
    font-size: 24px;
    height: 26px;
}

.product .download-button:hover {
    background: linear-gradient(to bottom, #357ec7, #2c6ba9); /* Darker blue on hover */
}

.product h3 {
    font-size: 24px;
    margin-top: 10px;
}


.product h3 {
    font-size: 24px;
    margin-top: 10px;
}

/* Footer styles */
footer {
    background: linear-gradient(to top, #333, #111);;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

footer p {
    font-size: 14px;
}

/* Add glossy button style */
.button {
    background: #4a90e2; /* Blue */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.button:hover {
    background: #357ec7; /* Darker blue on hover */
}

a:link{
   color: white;
}
a:visited{
    color: white;
}
a:hover{
    color: lightblue;
}
a:active{
    color: lightgray;
}

body {
    height: 100vh;
    margin: 0;
    padding: 0px;
}
footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
}