* {
  margin: 0;
  padding: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  box-sizing: border-box;
}

body {
  background-color: rgba(255, 228, 196, 0.397);
}

/* CONTAINER */
.container {
  border: 0.1ch solid rgba(190, 190, 190, 0.76);
  width: 60%;
  min-height: 100vh;
  margin: auto;
  background-color: rgba(242, 245, 248, 0.801);
  animation: fadeIn 1s ease;
}

/* HEADER */
.header img {
  width: 100%;
  border-radius: 5px;
}

/* HOME BAR */
.home {
  background-color: rgba(235, 225, 225, 0.747);
  margin: 10px;
  padding: 5px 20px;
}

.home a {
  color: #2e70a7;
  text-decoration: none;
  font-weight: bold;
}

/* TITLE */
.title-1 {
  margin: 10px;
}

.title-1 h2 {
  background-color: rgba(199, 199, 199, 0.651);
  padding-left: 10px;
  font-size: 1.4em;
  line-height: 1.7em;
  color: #a07b37;
  border-left: 4px #997d4a solid;
  animation: slideLeft 1s ease;
}

/* CONTACT CARD */
.contact-card {
  margin-top: 20px;
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  animation: fadeUp 1.2s ease;
}

.contact-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
}

.contact-box {
  background: #f4f7fb;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  transition: 0.4s;
}

.contact-box:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.contact-box h4 {
  color: #2e70a7;
  margin-bottom: 6px;
}

.contact-box p {
  font-size: 0.85em;
}

/* FORM */
.form-box h3 {
  margin-bottom: 10px;
  color: #2e70a7;
}

.form-box input,
.form-box textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 6px;
  border: 1px solid #bbb;
  outline: none;
  transition: 0.3s;
}

.form-box input:focus,
.form-box textarea:focus {
  border-color: #2e70a7;
  box-shadow: 0 0 5px rgba(46,112,167,0.5);
}

.form-box button {
  margin-top: 10px;
  padding: 10px 20px;
  background: #2e70a7;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.form-box button:hover {
  background: #1f547f;
  transform: scale(1.05);
}

/* FOOTER */
.bottom {
  background-color: #f0f0f0d3;
  text-align: center;
  padding: 15px;
  font-size: smaller;
}

.bottom a {
  color: rgb(211, 149, 55);
  text-decoration: none;
  font-size: 0.9em;
}

.v1 {
  border-left: 3px solid rgba(204, 202, 202, 0.836);
  height: 25px;
  margin: 0 10px;
}

.bottom p {
  margin-top: 10px;
  font-size: 0.8em;
}

hr {
  opacity: 0.5;
  margin: 20px 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .container { width: 90%; }
}

@media (max-width: 500px) {
  .container { width: 99%; }
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
