/* SERVER SECTION */
.server-section{
  padding:100px 0;
  background:#0f0f0f;
}

.server-container{
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
}

.server-header{
  text-align:center;
  margin-bottom:60px;
}

.server-header h2{
  font-size:32px;
  margin-bottom:15px;
  color:#fff;
}

.server-header p{
  color:#aaa;
  font-size:16px;
  max-width:700px;
  margin:0 auto;
}

.server-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.server-card{
  background:#1a1a1a;
  border-radius:12px;
  overflow:hidden;
  border:1px solid #222;
  transition:0.3s;
}

.server-card:hover{
  border-color:#ff9900;
  transform:translateY(-6px);
}

.server-content{
  padding:25px;
}

.server-content h3{
  color:#fff;
  font-size:20px;
  margin-bottom:10px;
}

.server-content p{
  font-size:14px;
  color:#bbb;
  line-height:1.7;
  margin-bottom:20px;
}

.server-btn{
  display:inline-block;
  background:#ff9900;
  color:#000;
  padding:10px 18px;
  border-radius:6px;
  font-weight:bold;
  text-decoration:none;
}

/* RESPONSIVE */
@media(max-width:992px){
  .server-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){

  .server-section{
    padding:60px 0;
  }

  .server-grid{
    grid-template-columns:1fr;
  }

  .server-header h2{
    font-size:24px;
  }

}