/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and general layout */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

header {
    background-color: #33C5B3;
    color: #fff;
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #33C5B3;
}

section {
    padding: 20px;
    max-width: 600px;
    margin: 20px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Form styling */
form label {
    display: block;
    margin: 10px 0 5px;
    color: #333;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form textarea {
    font-size: 1em;
    resize: vertical; /* Allows vertical resizing */
    height: 150px; /* Custom height for larger textarea */
}

/* Button styling */
button {
    background-color: #33C5B3;
    color: #fff;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background-color: #33C5B3;
}

/* Contact Section */
#contact {
    text-align: center;
}

/* New styling for the Reason for Visit field */
form textarea {
    width:100%;
    font-size: 1em;
    resize: vertical; /* Allows the user to resize vertically */
    height:150px;
}
