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

header {
    background: #007BFF;
    color: white;
    padding: 1rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d4d4d4;
}

.hero {
    background: #f4f4f4;
    text-align: center;
    padding: 4rem 1rem;
}

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

.hero p {
    font-size: 1.2rem;
}

.hero button {
    background: #007BFF;
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

.hero button:hover {
    background: #45a049;
}

.features, .about, .contact {
    padding: 2rem;
    text-align: center;
}

.feature-card {
    margin: 1rem;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: inline-block;
    width: 250px;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.contact input, .contact textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.contact button {
    background: #007BFF;
    color: white;
    border: none;
    padding: 0.7rem;
    cursor: pointer;
    transition: background 0.3s;
}

.contact button:hover {
    background: #45a049;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    height: 40px; /* Adjust size as needed */
    width: auto;
}

.company-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: white; /* Matches the header text color */
}
