/* Basic Reset and Body Styling */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif; /* Using a common web font */
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4; /* Light background */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styling */
header {
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img {
    height: 50px; /* Adjust as needed */
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav a {
    text-decoration: none;
    color: #073D83; /* Match original site's link color */
    font-weight: bold;
}

/* Hero Section Styling */
.hero {
    background: linear-gradient(135deg, rgba(6,147,227,1) 0%, rgb(155,81,224) 100%); /* Example gradient from original */
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.hero h1 {
    margin-top: 0;
    font-size: 2.5em;
}

.hero h3 {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.hero .form-container {
    background-color: #fff;
    color: #333;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    margin: 20px auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero .form-container h3 {
    margin-top: 0;
    color: #073D83;
}

/* Form Styling */
.form-step {
    margin-bottom: 20px;
}

.form-step label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-step input[type="text"],
.form-step input[type="email"],
.form-step input[type="tel"],
.form-step textarea,
.form-step select {
    width: calc(100% - 22px); /* Adjust for padding and border */
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-step button {
    background-color: #007bff; /* Example button color */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

.form-step button:hover {
    background-color: #0056b3;
}

/* Hide inactive steps */
.form-step:not(:first-child) {
    display: none;
}


/* Autofill Button Styling */
#autofill-submit {
    background-color: #cccccc; /* Grey background */
    color: #333; /* Darker text for contrast */
}

#autofill-submit {
    display: none; /* Hide the autofill button */
}

/* Footer Styling */
footer {
    background-color: #e9e9e9; /* Light gray background */
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

footer nav ul li {
    margin-left: 20px;
}

footer nav a {
    text-decoration: none;
    color: #333;
}

/* Basic Responsive Adjustments */
@media (max-width: 768px) {
    header .container,
    footer .container {
        flex-direction: column;
        text-align: center;
    }

    header nav ul,
    footer nav ul {
        margin-top: 10px;
        justify-content: center;
    }

    header nav ul li,
    footer nav ul li {
        margin: 0 10px;
    }

    .hero h1 {
        font-size: 1.8em;
    }

    .hero h3 {
        font-size: 1.2em;
    }
}