* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial;
}

body {
  overflow-x: hidden;
}

.largebox {
  width: 100%;
  height: 420px;
  background-image: url("/static/images/cover.jpg");
  background-position: top center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: end;
  margin-bottom: 30px;
}

.largebox__title {
  margin-bottom: 25px;
  color: #fff;
  font-size: 46px;
}

.contactsSection {
  padding: 30px 0;
  background: #fff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding: 0 20px;
}

/* LEFT */
.info {
  max-width: 400px;
  flex: 1;
}

.title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 20px;
}

.item {
  display: flex;
  margin-bottom: 15px;
}

.icon {
  min-width: 32px;
  height: 32px;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.text {
  font-size: 14px;
  line-height: 1.4;
}

/* RIGHT */
.contacts {
  flex: 1;
  max-width: 700px;
}

.sectionTitle {
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0 10px;
}

.person {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ccc;
  margin-right: 15px;
}

.name {
  font-weight: bold;
}

.phone {
  font-size: 14px;
  text-decoration: underline;
  margin-top: 5px;
}

.divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 15px 0;
}

.qrContainer {
  width: 120px;
  height: 120px;
}

.qrIcon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    gap: 20px;
  }

  .largebox {
    height: 220px;
  }

  .largebox__title {
    font-size: 28px;
  }

  .person {
    flex-direction: column;
    text-align: center;
  }

  .avatar {
    margin-bottom: 10px;
  }
}