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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
}

.background-section {
    position: relative;
    background-image: url('./images/bg_porch_small.jpg'); /* Replace with your background image URL */
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.background-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 0;  /* Keep it behind the child elements */
}

.header-container {
    text-align: center; /* Center the text */
    margin-top: 20px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.8em;
    text-align: center;
    font-weight: 300;
}

.header-container h1{
    font-size: xx-large;
}

.form-container {
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255); /* Semi-transparent white background */
    padding: 20px;
    border-radius: 10px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto; /* Center the form container */
    display: flex; /* Add this to make the container a flexbox */
    flex-direction: column; /* Stack child elements vertically */
    align-items: center; /* Center children horizontally */
}

.logo-container {
    display: flex;
    flex-direction: column; /* Stack the text above the logo */
    align-items: center;    /* Center horizontally */
    justify-content: center; /* Center vertically if needed */
    text-align: center;      /* Center the text */
    max-width: 150px;
}

.logo-container img {
    max-width: 100%;        /* Ensure the logo doesn't exceed container width */
    height: auto;           /* Maintain logo aspect ratio */
}

.broker-logo {
    margin-bottom: 20px;
}

/* Steps Section */
.steps-section {
    padding: 20px;
    background-color: #fff; /* Light background color */
    border-radius: 5px; /* Rounded corners */
    max-width: 1200px; /* Limit width */
    margin: 20px auto; /* Center the section */
    text-align: center; /* Center text */
}

.steps-container {
    display: flex;
    justify-content: center; /* Space between columns */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.step-item {
    flex: 1; /* Each item takes equal space */
    min-width: 220px; /* Minimum width for responsiveness */
    margin: 10px; /* Space around each item */
    padding: 20px; /* Inner padding */
    background-color: #f2f2f2; /* Light gray background for each step */
    border: 1px solid #ddd; /* Light border */
    border-radius: 5px; /* Rounded corners */
    display: flex; /* Use Flexbox */
    flex-direction: column; /* Stack elements vertically */
    justify-content: space-between; /* Space between text and icon */
    align-items: center; /* Center items horizontally */
    text-align: center; /* Center text */
}

.step-item h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: bold; /* Bold for step titles */
    margin: 0; /* Remove default margin */
}

.step-item img {
    margin-top: auto; /* Push the icon to the bottom */
}

.steps-context {
    font-family: 'Roboto', sans-serif;
    font-weight: 400; /* Normal weight for context */
    color: #555; /* Slightly darker text color */
    margin-top: 20px; /* Space above context */
    width: 65%;
    margin: 20px auto; /* Center the block horizontally */
    text-align: center;
}

/* Footer Styles */
.footer {
    background-color: black;
    font-family: 'Roboto', sans-serif;
    color: white;
    line-height: 1.8em;
    font-size: smaller;
    padding: 20px;
    text-align: center;
    font-weight: 300; /* Thin font */
}

.footer img {
    margin-bottom: 8px; /* Space below the logo */
}

.footer a {
    color: #ffffff;
}
