/* General Body and HTML Reset */
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ensures padding and border are included in the element's total width and height */
    font-family: 'Open Sans', sans-serif; /* Default font */
    line-height: 1.6;
    color: #333; /* Dark grey for general text */
    background-color: #000; /* Black background */
    background-image: url('temp-elevatd-sign-logo.png'); /* Your symbol logo */
    background-repeat: repeat; /* This makes the image repeat */
    background-size: 80px; /* Adjust size of repeating pattern as needed, e.g., 50px, 100px */
}

/* Remove the previous body::before rule as the background is now on the body directly */
/* body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('temp-elevatd-sign-logo.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    opacity: 0.05;
    z-index: -1;
} */

.container {
    max-width: 960px; /* Max width for content */
    margin: 0 auto; /* Center the container */
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.95); /* Slightly transparent white background for readability */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    min-height: 100vh; /* Ensures container takes full height */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally */
    text-align: center; /* Center text within sections */
}

/* Header and Logo */
.main-header {
    padding: 40px 0 20px;
}

.main-logo {
    max-width: 250px; /* Adjust as needed for logo size */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove extra space below image */
    margin: 0 auto; /* Center the logo */
}

/* Content Section */
.content-section {
    flex-grow: 1; /* Allows this section to take up available space */
    padding: 20px 0;
    width: 100%; /* Ensures it fills the container width */
}

.content-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8em;
    color: #222; /* Darker grey for headings */
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content-section .tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    color: #555;
    margin-bottom: 25px;
}

.content-section p {
    font-size: 1em;
    color: #444;
    max-width: 700px; /* Constrain paragraph width for readability */
    margin: 0 auto 20px;
}

/* Form Sections */
.form-section {
    background-color: #f7f7f7; /* Light grey background for forms */
    padding: 30px;
    margin: 40px auto; /* More spacing between form sections */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    max-width: 680px; /* Max width for form sections */
    width: 90%; /* Responsive width */
}

.form-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8em;
    color: #222;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-section p {
    font-size: 0.95em;
    margin-bottom: 25px;
    color: #666;
}

.google-form-embed iframe {
    border: 1px solid #ddd; /* Subtle border around the iframe */
    border-radius: 4px;
    width: 100% !important; /* Ensure iframe takes 100% width of its parent */
    /* Heights are set inline in HTML for specific form lengths, but responsive width is handled here. */
}

/* Footer */
.site-footer {
    padding: 20px;
    margin-top: auto; /* Pushes footer to the bottom */
    width: 100%;
    font-size: 0.85em;
    color: #666; /* Medium grey for footer text */
    border-top: 1px solid #eee; /* Subtle separator */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .content-section h1 {
        font-size: 2em;
    }

    .content-section .tagline {
        font-size: 1em;
    }

    .form-section {
        padding: 20px;
        margin: 30px auto;
    }

    .form-section h2 {
        font-size: 1.5em;
    }

    .main-logo {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .content-section h1 {
        font-size: 1.6em;
    }

    .content-section .tagline {
        font-size: 0.9em;
    }

    .form-section {
        padding: 15px;
        margin: 20px auto;
    }

    .form-section h2 {
        font-size: 1.3em;
    }

    .main-logo {
        max-width: 180px;
    }
}