body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #222;
    background: #f9f9f9;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* Hero */
.hero {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(135deg, #4a90e2, #007aff);
    color: white;
}

.tagline-img {
    display: block;        /* forces it onto its own line */
    margin: 20px auto;     /* centers the image horizontally */
    max-width: 80%;        /* keeps it responsive */
    height: auto;
}

.cta-btn {
    display: inline-block; /* ensures it sits on its own line cleanly */
    margin-top: 20px;      /* spacing below the image */
}

}

/* Features */
.features {
    padding: 60px 20px;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.tagline-img { max-width: 50%; height: auto; margin-top: 20px;
}

.feature-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Contact */
.contact {
    padding: 60px 20px;
    text-align: center;
}

form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input, textarea {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

button {
    padding: 12px;
    background: #007aff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #005fcc;
}
