body {
    font-family: Arial, sans-serif;
    color: #e0e0e0; /* light grey for text */
    background-color: rgb(14, 7, 85);
}

html,
body {
    margin: 0;
}

header,
section,
footer {
    text-align: center;
    padding: 10px;
    position: relative;
    z-index: 1;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

h1, h2 {
    color: #d1ab2e; /* gold for headings */
    margin: 20px 0;
}

h1 {
    font-size: 36px;
    font-weight: bold;
}

h2 {
    font-size: 28px;
    font-weight: bold;
}

p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #e0e0e0; /* light grey for main text */
}


/* Dropdown section styling */
.feedback-section {
    text-align: center;
    padding: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 70%;
    margin: 0 auto;
}

.feedback-section p {
    display: block;
    color: white;
    margin: 0 0 20px 0;
}

.feedback-section textarea {
    width: 100%;
    height: 40px;
    border: 1px solid #d4af37;
    background-color: #1c1c1c;
    color: #d4af37;
    border-radius: 5px;
    padding: 5px;
    font-size: 16px;
    margin: 20px auto;
    min-height: 100px;
}


button {
    background-color: #d4af37;
    color: #000;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
    width: 300px;
    /* Fixed width for consistency */
    height: 40px;
}

button:disabled {
    background-color: #9e9e9e;
}

footer p {
    font-size: 16px;
    line-height: 1.4;
    max-width: 800px;
    margin: 20px auto;
    color: #e0e0e0; /* light grey for footer text */
}

/* Responsive design for mobile devices */
@media only screen and (max-width: 767px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    p, footer p {
        font-size: 16px;
    }

    section {
        padding: 10px;
    }
}
