.sky-safety{
  background:#F8F4EA;
  padding:110px 20px;
  overflow:hidden;
}

.sky-safety-wrap{
  max-width:var(--container);
  margin:0 auto;
}

.sky-safety-head{
  max-width:850px;
  margin:0 auto 45px;
  text-align:center;
}

.sky-safety-head h2{
  margin-bottom:20px;
}

.sky-safety-head p{
  max-width:820px;
  margin:0 auto;
  font-size:17px;
  line-height:1.8;
}

.sky-safety-main{
  display:grid;
  grid-template-columns:1.25fr 0.95fr;
  gap:30px;
  align-items:stretch;
}

.sky-safety-image{
  min-height:520px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid var(--border-color);
}

.sky-safety-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.sky-safety-card{
  background:var(--header-bg);
  border-radius:24px;
  padding:40px 38px;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,0.10);
}

.sky-safety-card h3{
  color:#Ffff;
  font-size:34px;
  margin-bottom:28px;
}

.sky-safety-card ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:15px;
}

.sky-safety-card li{
  position:relative;
  padding:14px 0 14px 54px;
  color:var(--light-text);
  font-size:17px;
  font-weight:700;
  border-bottom:1px dashed rgba(255,248,244,0.18);
}

.sky-safety-card li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:36px;
  height:36px;
  border-radius:50%;
  background:var(--card-bg);
  color:var(--accent-btn);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
}

.sky-safety-bottom{
  margin-top:30px;
  background:var(--card-bg);
  border:1px solid var(--border-color);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:30px;

  gap:30px;
}

.sky-safety-bottom p{
  font-size:16px;
  line-height:1.85;
  margin:0;
}

@media(max-width:992px){
  .sky-safety-main,
  .sky-safety-bottom{
    grid-template-columns:1fr;
  }

  .sky-safety-image{
    min-height:420px;
  }
}

@media(max-width:768px){
  .sky-safety{
    padding:85px 20px;
  }

  .sky-safety-image{
    min-height:330px;
  }

  .sky-safety-card{
    padding:30px 24px;
  }

  .sky-safety-card h3{
    font-size:28px;
  }

  .sky-safety-card li{
    font-size:15px;
  }

  .sky-safety-bottom{
    padding:24px;
  }
}