* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Raleway', sans-serif;
}

body {
  background-color: #fff;
  color: #000;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  font-weight: bold;
  font-size: 14px;
  border-bottom: 1px solid #ddd;

}


nav a {
  margin-left: 40px;
  text-decoration: none;
  color: #000;
  font-weight: normal;
  font-size: 20px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 40px;
  background-color: #fff;
}

.hero-text {
  flex: 1 1 50%;
  padding-right: 40px;
}

.hero-text h1 {
  font-size: 100px;
  line-height: 1.2;
}

.hero-text p {
  margin-top: 15px;
  font-size: 35px;
  font-weight: bold;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}


footer {
  background-color: #050805;
  color: #fff;
  padding: 40px;
  font-size: 14px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-column p {
  margin: 6px 0;
  line-height: 1.4;
}

.footer-column a {
  color: #fff;
  text-decoration: underline;
}

.footer-logo {
  width: 160px;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 20px;
  font-size: 13px;
  color: #ccc;
}

.design-section {
  padding: 40px;
}

.main-heading {
  font-size: 35px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.content-wrapper {
  display: flex;
  align-items: flex-start;
}

.image-block img {
  height: auto;
  max-height: 500px;
  object-fit: cover;
  margin-right: 0;
}

.info-table {
  border-collapse: collapse;
  margin-left: auto;
  margin-right: 120px;
  width: 100%;
  max-width: 700px;
  border: none; /* Убираем внешнюю границу таблицы */
}

.info-table-white td {
  border-color: white !important;
}

.info-table td {
  border: 1px solid #000000;
  padding: 40px;
  text-align: center;
  vertical-align: middle;
  font-size: 20px;
}

.info-table tr td:first-child,
.info-table tr td:last-child {
  width: 60px;
}

.info-table tr td:nth-child(2) {
  text-align: left;
  width: auto;
}
.info-table tr:first-child td {
  border-top: none; /* Убираем верхнюю границу у первой строки */
}
.info-table tr:last-child td {
  border-bottom: none; /* Убираем нижнюю границу у последней строки */
}
.info-table tr td:first-child {
  border-left: none; /* Убираем левую границу у первого столбца */
}
.info-table tr td:last-child {
  border-right: none; /* Убираем правую границу у последнего столбца */
}


