/* reset & global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  color: #333;
  background: #fff;
}

/* HEADER */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  padding: 10px 20px;
}
.header-left .logo {
  height: 70px;
}
.header-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.header-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.header-nav a.active {
  color: #e6341d;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-right .icon {
  width: 20px;
  filter: invert(1);
}
.header-right a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}

/* MAIN CONTENT */
.contact-main {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

/* TITLE */
.contact-title {
  font-size: 3rem;
  margin-bottom: 50px;
  margin-top: 30px;
  text-align: center;
}

/* ADDRESSES */
.addresses {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.address-block {
  flex: 1 1 45%;
  text-align: center;
  margin-bottom: 50px;
}
.address-block .icon {
  width: 24px;
  margin-bottom: 10px;
}
.address-block h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* FORM */
.form-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.form-wrapper form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form-wrapper input,
.form-wrapper textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.form-wrapper button {
  background: #e6341d;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

/* SOCIAL FOOTER */
.social-footer {
  text-align: center;
  padding-bottom: 20px;
}
.social-footer a {
  margin: 0 10px;
  display: inline-block;
}
.social-footer img {
  width: 32px;
  height: 32px;
}
