*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,
body{
  width:100%;
  min-height:100%;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}

body{
  background:#fff;
  color:#111;
  font-family:Inter, Arial, Helvetica, sans-serif;
}

a{
  text-decoration:none;
  color:inherit;
}

.page{
  min-height:100vh;
  background:#fff;
}

.help-wrap{
  max-width:1100px;
  margin:0 auto;
  padding:34px 22px 80px;
}

.help-head{
  border-bottom:1px solid #e6e6e6;
  padding-bottom:24px;
  margin-bottom:38px;
}

.help-title{
  font-size:48px;
  line-height:1.02;
  letter-spacing:-1.4px;
  font-weight:800;
  color:#111;
  margin-bottom:18px;
}

.help-text{
  max-width:920px;
  font-size:18px;
  line-height:1.7;
  letter-spacing:-0.12px;
  color:#444;
}

.help-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
}

.help-card{
  background:#f4f4f4;
  min-height:260px;
  padding:34px 26px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  border:1px solid transparent;
  border-radius:22px;
  transition:transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.help-card:hover,
.help-card:focus-visible{
  transform:translateY(-2px);
  background:#fff;
  border-color:#e5e5e5;
  box-shadow:0 18px 48px rgba(0,0,0,.08);
  outline:none;
}

.help-icon{
  width:72px;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:26px;
  border-radius:20px;
  background:#fff;
  border:1px solid #e2e2e2;
}

.help-icon svg{
  width:48px;
  height:48px;
  display:block;
  stroke:#000;
  fill:none;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.help-card-title{
  font-size:26px;
  line-height:1.22;
  letter-spacing:-0.5px;
  font-weight:800;
  color:#111;
  margin-bottom:12px;
}

.help-card-text{
  max-width:310px;
  font-size:16px;
  line-height:1.6;
  letter-spacing:-0.06px;
  color:#555;
}

.support-box{
  margin-top:54px;
  background:#f7f7f7;
  padding:30px 24px;
  border:1px solid #ececec;
  border-radius:22px;
}

.support-title{
  font-size:28px;
  line-height:1.1;
  letter-spacing:-0.7px;
  font-weight:800;
  margin-bottom:14px;
  color:#111;
}

.support-text{
  font-size:17px;
  line-height:1.7;
  letter-spacing:-0.08px;
  color:#4b4b4b;
  max-width:780px;
  margin-bottom:22px;
}

.support-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.support-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 22px;
  background:#111;
  color:#fff;
  font-size:16px;
  font-weight:800;
  border-radius:12px;
}

.support-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 8px;
  font-size:16px;
  font-weight:700;
  color:#111;
  border-bottom:1px solid #bbb;
}

@media (max-width:768px){
  .help-wrap{
    padding:28px 18px 70px;
  }

  .help-title{
    font-size:40px;
  }

  .help-grid{
    grid-template-columns:1fr 1fr;
    gap:18px;
  }

  .help-card{
    min-height:220px;
    padding:28px 18px;
  }

  .help-card-title{
    font-size:21px;
  }

  .help-card-text{
    font-size:15px;
  }
}

@media (max-width:560px){
  .help-title{
    font-size:34px;
  }

  .help-text{
    font-size:17px;
  }

  .help-grid{
    grid-template-columns:1fr 1fr;
    gap:14px;
  }

  .help-card{
    min-height:190px;
    padding:22px 14px;
  }

  .help-icon{
    width:58px;
    height:58px;
    margin-bottom:18px;
    border-radius:16px;
  }

  .help-icon svg{
    width:40px;
    height:40px;
  }

  .help-card-title{
    font-size:18px;
    margin-bottom:8px;
  }

  .help-card-text{
    font-size:14px;
    line-height:1.45;
  }

  .support-box{
    margin-top:36px;
    padding:24px 18px;
  }

  .support-title{
    font-size:24px;
  }
}
