* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

body {
  border: 2px solid #a08cff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.logo {
  height: 80px;
}

.contact a{
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
}

.contact a:hover {
  color: #2e6da4;
}

.main-content {
  text-align: center;
  padding: 40px 20px;
  flex: 1;
}

h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

h2 {
  font-size: 22px;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
}

.contact-form h3 {
  text-align: center;
  margin-bottom: 15px;
  color: #333;
}

.contact-form label {
  display: block;
  margin-bottom: 15px;
  font-weight: bold;
}

.contact-form input {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #999;
  margin-top: 5px;
}

.contact-form button {
    color: #fff;
    background-color: #2e6da4;
    padding: 10px 20px;
    border: 0;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.4px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background-color: #204d74;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


.footer {
    background-color: #2e6da4;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
}
