/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Container Styling */
.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Section Title */
h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

/* Paragraph Text */
p {
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Textarea Styling */
textarea {
    width: 100%;
    min-height: 150px;
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical; /* Allow resizing only vertically */
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Submit Button Styling */
button {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

/* Acknowledgment Message */
#acknowledgment {
    font-size: 16px;
    color: #28a745;
    margin-top: 20px;
    text-align: center;
    display: none;
}

/* Hidden Class for Message */
.hidden {
    display: none;
}