body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f8f8f8;
    color: #333;
}

header {
    background-color: #0078d7;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

nav a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 2rem;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #f0f0f0; /* light gray */
    color: #333;
    font-size: 14px;
}

footer a {
    color: #0066cc; /* brighter blue */
    font-weight: bold;
    text-decoration: none;
}

footer a:hover {
    color: #004080; /* darker blue on hover */
    text-decoration: underline;
}

footer p {
    margin: 5px 0;
}

.form-input {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-button {
    background-color: #0078d7;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.form-button:hover {
    background-color: #005fa3;
}

/* Logo + Title Layout */
.logo-title {
    display: flex;
    align-items: center;
    gap: 12px; /* space between logo and text */
}

.logo {
    height: 120px;   /* adjust to fit your header */
    width: auto;    /* keep proportions */
    border-radius: 8px; /* optional: soften corners */
}

.phone-number {
    white-space: nowrap;   /* keep number on one line */
    color: #0066cc;        /* same style as email link */
    font-weight: bold;     /* make it stand out */
    text-decoration: none;
}

.phone-number:hover {
    color: #004080;        /* darker on hover */
    text-decoration: underline;
}

.phone-number {
    white-space: nowrap;
    color: #0066cc;
    font-weight: bold;
    text-decoration: none;
}

.phone-number:hover {
    color: #004080;
    text-decoration: underline;
}