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

body, html {
    width: 100%;
    height: 100%;
    font-family: 'Cormorant Garamond', 'Times New Roman', Times, serif;
    background-color: #d3ded6;
    color: #000000;
}

.background-container {
    width: 100%;
    height: 100%;
    background-image: url("background.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative; /* Essential context for tracking the logo position */
}

/* ==========================================================================
   NEW BRAND LOGO BLOCK LAYOUT RULES
   ========================================================================== */
.logo-wrapper {
    position: absolute;
    top: 40px;         /* Spacing distance away from the very top screen edge */
    left: 50%;
    transform: translateX(-50%); /* Mathematical trick to lock it dead-center horizontally */
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 550px;  /* Constrains the footprint container bounds */
}

.brand-logo {
    width: 100%;       /* Fluid horizontal expansion parameter */
    height: auto;      /* Preserves scaling ratios perfectly to avoid distortion */
    max-height: 100px; /* Caps the maximum allowable layout height */
    object-fit: contain;
}

/* Flex Grid alignment parameters ensuring layout items map under logo node */
.main-content-layout {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    margin-top: 14%; /* Pushes text columns safely downwards away from the floating logo */
}

/* LEFT LAYOUT PILLAR TYPOGRAPHY */
.typography-column {
    flex: 1;
    max-width: 550px;
    transform: translateY(-100px) !important; /* Forces the text block UP regardless of screen size */
}

.main-heading {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 25px;
    color: #111111;
}

.italic-description-block {
    font-size: 32px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 35px;
    color: #333333;
}

.announcement-block {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.6;
    color: #222222;
}

/* RIGHT LAYOUT PILLAR CONVERSION ELEMENT */
.action-column {
    flex: 1;
    max-width: 460px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 170px; /* Add this line to push the block 100 pixels lower down */
    margin-right: 140px;  /* Add this line to shift the entire block to the LEFT */
}


.envelope-icon-wrapper {
    margin-bottom: 15px;
}

.envelope-icon {
    width: 32px;
    height: 32px;
}

.sub-heading-gold {
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #b5945b;
    margin-bottom: 12px;
}

.cta-instruction-text {
    font-size: 15px;
    color: #444444;
    line-height: 1.5;
    margin-bottom: 25px;
}

.notify-form {
    width: 100%;
    margin-bottom: 15px;
}

.input-group {
    display: flex;
    border: 1px solid #b5945b;
    border-radius: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.input-group input {
    flex: 1;
    padding: 16px 18px;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: sans-serif;
    background: transparent;
    color: #222222;
}

.input-group input::placeholder {
    color: #888888;
}

.input-group button {
    background-color: #b5945b;
    color: #ffffff;
    border: none;
    padding: 0 28px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.input-group button:hover {
    background-color: #9c7f4d;
}

.privacy-statement {
    font-size: 13px;
    font-style: italic;
    color: #666666;
}

/* RESPONSIVE LAYOUT CONSTRAINTS FOR VIEWPORT SCALING */
@media (max-width: 900px) {
    .background-container {
        padding: 30px 20px;
        overflow-y: auto;
        align-items: flex-start;
    }
    .logo-wrapper {
        top: 25px;
        max-width: 260px; /* Shrinks the logo sizing slightly for small mobile windows */
    }
    .main-content-layout {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        gap: 50px;
        margin-top: 35%; /* Drags form elements further down to guarantee mobile logo spacing */
    }
    .typography-column {
        text-align: center;
	 margin-top: -60px; /* Add this line here at the bottom of the file to fix it */
    }
    .main-heading {
        font-size: 38px;
    }
    .italic-description-block {
        font-size: 20px;
    }
    .announcement-block {
        font-size: 17px;
    }
    .input-group {
        flex-direction: column;
        border: none;
        background: transparent;
        box-shadow: none;
    }
    .input-group input {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid #b5945b;
        border-radius: 2px;
        margin-bottom: 10px;
        padding: 15px;
    }
    .input-group button {
        padding: 15px;
        border-radius: 2px;
        width: 100%;
    }
}
