* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  color: #333;
}

/* Header */
header {
  background-color: #8b0000;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  flex-wrap: wrap;
}

.logo {
  font-size: 24px;
  font-family: 'Georgia', serif;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 15px;
  font-weight: bold;
  background: #a30000;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  transition: background 0.3s ease;
}

nav a:hover {
  background: #6b0000;
}

/* Form Container */
.container {
  max-width: 600px;
  margin: 60px auto;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.container h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #b22222;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

textarea {
  height: 100px;
  resize: none;
}

.submit-btn {
  display: block;
  background-color: #a30000;
  color: white;
  border: none;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s;
  margin: 0 auto;
}

.submit-btn:hover {
  background-color: #6b0000;
}

/* Footer */
.footer {
  background-color: #1d3557;
  color: white;
  padding: 40px 20px 0;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin: 20px;
}

.footer-column h3 {
  border-bottom: 2px solid #ffffff60;
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-contact li {
  font-size: 14px;
  line-height: 1.6;
}

.social-icons a img {
  width: 30px;
  margin-right: 10px;
  border-radius: 50%;
  transition: transform 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.1);
}

.footer-image {
  margin-top: 15px;
  width: 100%;
  max-width: 150px;
  border-radius: 10px;
  box-shadow: 0 0 10px #00000040;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding: 15px 0;
  background-color: #16324f;
  font-size: 14px;
  color: #ccc;
}
