* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Force body to take exactly 100vw and 100vh without scrolling */
html, body {
    width: 100vw;
    height: 100vh;
    overflow: hidden; /* Kills all horizontal and vertical scrollbars */
    background-color: #f4f6f8;
}

/* Hero container using full viewport cover background */
.hero-wrapper {
    width: 100vw;
    height: 100vh;
    background: url('../images/banner-image.png') center center / 100% 100% no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 4vw;
}

/* Form Overlay Container */
.form-overlay {
    width: 100%;
    max-width: 380px;
    z-index: 10;
}

.form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 24px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-card h2 {
    font-size: 1.15rem;
    color: #1b382b;
    margin-bottom: 4px;
    font-weight: 700;
}

.form-card p {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 15px;
}

.input-group {
    margin-bottom: 10px;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
    resize: none;
}

.input-group input:focus, 
.input-group textarea:focus {
    border-color: #1b382b;
}

.submit-btn {
    width: 100%;
    background-color: #1b382b;
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 4px;
}

.submit-btn:hover {
    background-color: #13281f;
}

.privacy-note {
    display: block;
    text-align: center;
    font-size: 0.72rem;
    color: #777;
    margin-top: 10px;
}

.status-msg {
    margin-top: 8px;
    font-size: 0.8rem;
    text-align: center;
    font-weight: 600;
    color: #28a745;
}