* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f3f5f7;
  color: #1f2933;
}

.wrap {
  max-width: 1100px;
  margin: 40px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

h1 {
  margin-top: 0;
  color: #0f2f4f;
}

a {
  color: #0b5cab;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.grid {
  display: grid;
  gap: 20px;
}

.card {
  display: block;
  padding: 24px;
  background: #f8fafc;
  border: 1px solid #d9e2ec;
  border-radius: 12px;
  font-weight: bold;
  color: #0f2f4f;
}

.card:hover {
  background: #eef5fb;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: bold;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd5df;
  border-radius: 8px;
  font-size: 16px;
}

button,
.cta {
  display: inline-block;
  padding: 12px 18px;
  background: #0b5cab;
  color: #ffffff;
  border: 0;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

button:hover,
.cta:hover {
  background: #084882;
  text-decoration: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: #ffffff;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid #d9e2ec;
  text-align: left;
}

th {
  background: #eef5fb;
  color: #0f2f4f;
}

.notice {
  padding: 12px;
  background: #e6f4ea;
  border: 1px solid #b7dfc1;
  border-radius: 8px;
  margin-bottom: 16px;
}

.error {
  padding: 12px;
  background: #fdecea;
  border: 1px solid #f5c2c0;
  border-radius: 8px;
  margin-bottom: 16px;
}
