
@font-face {
    font-family: 'Tahoma';
    src: url('fonts/tahoma.ttf')  format('truetype');
}

body {
  color: #544C3B;
}

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

.container {
  max-width: 1200px;
  margin: auto;
}

.header {
  padding: 24px 0;
}

.logo strong {
  font-size: 22px;
  letter-spacing: 1px;
}

.logo span {
  font-size: 14px;
  color: #544C3B;
}

.website {
  height: 550px;
  background: url("images/header.jpg") right center / cover no-repeat;
  display: flex;
  align-items: center;
}

.website-content {
  padding: 40px 50px;
  margin-left: 60px;
  max-width: 500px;
}

.website h1 {
  font-size: 60px;
  font-weight: bold;
  line-height: 1.15;
  margin-bottom: 12px;
}

.website p {
  font-size: 24px;
  font-weight: bold;
}

.feature-bar {
  display: flex;
  height: 320px;
}

.feature {
  flex: 1;
  padding: 40px 30px;
  color: white;
}

.feature h3 {
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.feature ul {
    list-style-position: inside;
    list-style-image: url("images/point-dark.png");

    display: block; 
    width: 250px; 
    margin-left: auto; 
    margin-right: auto;
}

.feature li {
    padding: 10px;
}



.dark {
  background: #544C3B;
}

.orange {
  background: #c94b16;
  text-align: center;
}

.price {
  font-size: 40px;
  font-weight: bold;
  margin: 10px 0;
}

.content {
  display: flex;
  padding: 60px 80px;
  gap: 80px;
}

.content-box {
  display: block; 
  width: 450px; 
  margin-left: auto; 
  margin-right: auto;
}

.content-box h2 {
  font-size: 32px;
  margin-bottom: 14px;
  color: #544C3B;
}

.footer {
  text-align: center;
  padding: 40px 80px;
  background: #ffffff;
  width: 100%;
  /*display: flex;
  justify-content: space-between;*/
}

.phone {
  font-size: 22px;
  margin-top: 10px;
}

.link {
    color: #544C3B;
    text-decoration: none;
}

@media (max-width: 900px) {
  .website {
    height: auto;
    padding: 40px 20px;
  }

  .website-content {
    margin: 0;
  }

  .feature-bar {
    flex-direction: column;
    height: auto;
  }

  .content {
    flex-direction: column;
    padding: 40px 20px;
  }

  .footer {
    flex-direction: column;
    gap: 20px;
  }
}
