* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
}

.company-name {
    font-size: 2.5rem;
    text-align: center;
}

.tagline {
    text-align: center;
    font-size: 1.2rem;
    margin: 10px 0;
}

.nav-menu {
    list-style: none;
    text-align: center;
    margin-top: 20px;
}

.nav-menu li {
    display: inline;
    margin: 0 15px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: url('gps-hero.webp') no-repeat center center/cover;
    color: white;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin: 15px 0;
}

.cta-button {
    background-color: #e74c3c;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.about-section, .product-section, .contact-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.about-section p, .product-section p {
    text-align: center;
    max-width: 700px;
    margin: 20px auto;
}

.features {
    list-style: none;
    text-align: center;
    padding: 20px 0;
}

.features li {
    font-size: 1.2rem;
    margin: 10px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

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

.contact-form button {
    background-color: #2c3e50;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 0;
}
