/* General Body Styling */
.body-class {
    background-image: linear-gradient(to left, #7B2D26 50%, #111313 50%);
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Header Styling */
.header-class {
    background-color: #333;
    color: white;
    padding: 0.5em;
    width: 100%;
    position: fixed;
    top: 0;
    text-align: center;
}

.title-class {
    font-size: 2.5rem;
}

/* Main Section Styling */
.main-class {
    width: 80%;
    max-width: 960px;
    margin: 50px auto 0 auto; /* Added top margin to offset header */
    padding: 20px;
    text-align: center;
}

.section-class {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.description-class {
    font-size: 1rem;
    color: #111313;
    margin-bottom: 20px;
}

/* Form Styling */
.form-class {
    margin-bottom: 20px;
}

.button-class {
    background-color: #7B2D26;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.button-class:hover {
    background-color: #9a4440;
}

/* Footer Styling */
.footer-class {
    background-color: #333;
    color: white;
    padding: 0.5em;
    text-align: center;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    font-weight: bold;
}

.footer-text-class {
    margin: 0;
    padding: 0;
    font-size: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title-class {
        font-size: 1.8rem;
    }

    .main-class {
        width: 95%;
    }

    .description-class {
        font-size: 1rem;
    }
}
