/* General Reset */
body, h1, h2, p, ul, li, input, textarea, button {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Body Styling */
body {
    background-color: #f4f4f4;
    color: #333;
}

/* Header Styling */
header {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

/* Section Styling */
section {
    padding: 20px;
    margin: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Contact Form Styling */
form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

form input[type="text"], form input[type="email"], form textarea {
    width: 100%;
    padding: 12px;               /* Increased padding for larger input field */
    font-size: 16px;             /* Increased font size for better readability */
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    box-sizing: border-box;
}

/* Adjusting text area size */
form textarea {
    height: 200px;              /* Increased height to make it larger */
    resize: vertical;           /* Allows vertical resizing */
}

/* Submit button styling */
form button[type="submit"] {
    padding: 12px 20px;         /* Increased padding for a larger button */
    font-size: 16px;            /* Font size adjustment */
    background-color: #333;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;                /* Make button full width */
    box-sizing: border-box;     /* Ensure padding doesn't affect width */
}

/* Button hover effect */
form button[type="submit"]:hover {
    background-color: #555;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: white;
    position: fixed;
    width: 100%;
    bottom: 0;
}
