/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  background-color: #002366; /* Dark Royal Blue */
  color: #333;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center; /* Horizontally center the container */
  align-items: center;    /* Vertically center the container */
}

/* Container Styles */
.container {
  max-width: 600px;
  background-color: #fff; /* White background */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Heading Styles */
h1 {
  font-size: 2.5em;
  color: #002366; /* Dark Royal Blue */
  text-align: center;
  margin-bottom: 20px;
}

h2 {
  color: #002366;
  border-bottom: 2px solid #002366;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

/* Paragraph and Link Styles */
p {
  font-size: 1.1em;
  line-height: 1.6;
}

a {
  color: #002366;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Contact Information and Resume Link */
.contact-info {
  margin-bottom: 20px;
}

.resume-link {
  text-align: center;
  margin-bottom: 30px;
}

.resume-link a {
  background-color: #002366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.resume-link a:hover {
  background-color: #004080;
}

/* Form Styles */
form {
  margin-top: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  color: #002366;
}

input, textarea {
  width: calc(100% - 24px); /* Matching submit button width */
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  color: #333;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #002366;
}

input[type="submit"] {
  background-color: #002366;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 12px 24px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

input[type="submit"]:hover {
  background-color: #004080;
}
