* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f5f0e7;
  color: #171717;
  font-family: Georgia, "Times New Roman", serif;
}

header {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.logo span {
  margin-left: 8px;
}

nav {
  display: flex;
  gap: 38px;
}

nav a {
  color: #555;
  text-decoration: none;
  font-size: 15px;
}

nav a:hover {
  color: #000;
}


main {
  min-height: calc(100vh - 150px);
}

.device-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 85px 35px 70px;
}


.top-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}

.label {
  font-size: 15px;
  font-weight: bold;
  color: #555;
  margin-bottom: 8px;
}

.top-info h1 {
  font-size: 31px;
  line-height: 1.2;
  margin-bottom: 45px;
}

.top-info h2 {
  font-size: 29px;
  margin-bottom: 42px;
}


.buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 10px;
}

.button-box p {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
}

.yellow-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  background: #f0c94d;
  color: #171717;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  transition: 0.2s ease;
}

.yellow-button:hover {
  transform: translateY(-2px);
  background: #e9bf38;
}


.additional {
  margin-top: 65px;
  padding-top: 35px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  align-items: start;
}

.additional h2 {
  grid-column: 1 / -1;
  font-size: 24px;
  margin-bottom: -30px;
}

.recovery{
  display: inline-block;
  background: #e9bf38;
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
 width: 100%;
 height: 58px;
 box-sizing: border-box;
  border-radius: 30px;
  margin-top: 44px;
  font-size: 17px;
  font-weight: bold;
}

.recovery:hover {
  transform: translateY(-2px);
  color: #e9bf38;
}
.install-process {
  position: relative;
}

.install-process p {
  margin: 0 0 15px;
  font-size: 24px;
  font-weight: bold;
}

.read-now {
  display: block;
  width: 100%;
  height: 58px;
  box-sizing: border-box;
  background: #e9bf38;
  color:#000;
  text-decoration: none;
  padding: 15px 70px;
  border-radius: 30px;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
}

.read-now:hover {
  transform: translateY(-2px);
  background: #e9bf38;

}
footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 25px 7%;
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 14px;
}


/* Mobile */

@media (max-width: 800px) {

  header {
    height: auto;
    padding: 25px;
    flex-direction: column;
    gap: 20px;
  }

  nav {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .device-page {
    padding: 50px 25px;
  }

  .top-info {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .top-info h1 {
    font-size: 27px;
  }

  .top-info h2 {
    font-size: 25px;
  }

  .buttons {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  footer {
    flex-direction: column;
    gap: 10px;
  }
}