* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'OpenSansRegular', sans-serif;
    color: #333;
    background-color: #282828;
}

header {
    background-color: #3062D6;
    padding: 10px 10px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
}

.logo a {
    color: #fff;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    display: inline;
    margin-left: 15px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    height: 60vh;
    background: url('hero-background.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 2.5em;
	font-weight: normal;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
}

.cta-btn {
    background-color: #d42727;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #C70039;
}

.features, .install, .contact, .products {
    padding: 60px 20px;
    text-align: center;
}

h2 {
    color: #D3D3D3;
}

.install, .contact {
    color: #D3D3D3;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.feature-box {
    background-color: #fff;
    padding: 20px;
    width: 250px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product-button {
    background-color: #0ef;
    padding: 20px;
    width: 250px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	text-align: left;
}

.product-button h4 {
    padding-left: 10px; /* Indent <h4> */
}

.product-button h4 + p,
.product-button h4 + p + p {
    padding-left: 20px; /* Further indent the two <p> elements */
}

.install-links img {
    width: 150px;
    margin: 10px;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
}

form input, form textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px;
    border: none;
    background-color: #3062D6;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.email-link {
    color: #007BFF;
    font-weight: bold;
    text-decoration: none;
    background-color: #f4f4f4;
    padding: 10px 20px;
    border: 2px solid #007BFF;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.email-link:hover {
    background-color: #007BFF;
    color: white;
}

footer {
    background-color: #3062D6;
    color: #D3D3D3;
	font-size: 0.8em;
    text-align: center;
    padding: 10px 0;
}
