.basic {
  background: #f2ece8 url('space/basic.jpg') no-repeat center center;
  background-size: cover;
  height: auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  padding: 15px 20px;
}
.basic-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo img {
  height: 100px;
  max-width: 100%;
}
.center-image img {
  height: 90px;
  max-width: 100%;
  object-fit: contain;
}
.contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #993c3d;
  font-weight: bold;
  text-decoration: none;
}
.contact-link:hover {
  color: #cc6633;
  transform: scale(1.05);
}
.contact-icon {
  width: 24px;
  height: 24px;
}
.contacts-clean {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 20px;
    background-color: transparent;
  border-radius: 8px;
}

.contacts-clean .line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  color: #414141;
  font-size: 16px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.contacts-clean .icon {
  width: 24px;
  height: 24px;
}

.contacts-clean .text {
  font-size: 16px;
  line-height: 1;
}