body {
    background-color: #3d4030;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.page-wrapper {
    width: 100%;
    max-width: 1000px; /* Matches homepage width */
    margin: auto;
}

.header-section {
    text-align: center;
    margin-bottom: 20px;
}

.header-section h1 {
    color: #FFFF00;
    font-size: 2.2em;
    margin-bottom: 15px; 
    text-shadow: 0 0 5px rgba(255, 255, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
    font-weight: normal; 
}

.header-section .subtitle {
    color: #FFFF00;
    font-size: 1.1em;
    font-style: italic;
    margin-top: 5px;
}

.main-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
}

.features-column {
    flex: 0 0 280px;
    padding-left: 20px;
    margin-top: 40px; /* MODIFIED: Reduced from 55px to bring the list up */
}

.features-column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    color: #FFFFFF;
}

.features-column li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 3px; 
    line-height: 1.4;   
}

.features-column li::before {
    content: "\25A0";
    color: #FFFFFF;
    font-size: 0.8em;
    position: absolute;
    left: 0;
    top: 0.5em;
    line-height: 0;
}

.form-column {
    flex: 1;
    margin-top: 70px; /* MODIFIED: Added to push the form box down */
}

.form-wrapper {
    background-color: #000000;
    border: 2px solid #00FF00;
    border-radius: 8px;
    padding: 15px 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    max-width: 450px;
    width: 95%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}

h2 {
    color: #FFFF00;
    font-size: 1.8em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

form {
    width: 100%;
}

form label {
    display: block;
    margin-bottom: 5px;
    color: #E0E0E0;
    font-size: 0.95em;
    text-align: left;
}

form input[type="email"],
form textarea {
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 20px;
    background-color: #333333;
    border: 1px solid #00FF00;
    border-radius: 5px;
    color: #FFFFFF;
    font-size: 1em;
    box-sizing: border-box;
}

.buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

input[type="submit"],
.button-link {
    background-color: #ffff00;
    color: #000000;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
}

input[type="submit"]:hover,
.button-link:hover {
    background-color: #FFD700;
}

@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        align-items: center;
    }
    .features-column {
        flex: none;
        width: 90%;
        text-align: center;
        margin-top: 0; 
    }
    .form-column {
        margin-top: 0;
    }
    .features-column li {
        text-align: left;
    }
}