a{
  outline: none;
  text-decoration: none;
}


body{
  background: #F2F2F2;
  padding: 22px 25px;
  font-family: "Poppins", sans-serif;
}
header{
  background: #fff;
  padding: 30px 25px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 40px;
  margin-bottom: 30px;
}
header strong{
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}
header strong span{
  color: #EC1F29;
}
header p{
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  color: #757575;
  margin: 10px 0 0;
  letter-spacing: -0.03em;
}
header .logo{
  max-height: 85px;
}
.workspace-hub{
  background: #fff;
  padding: 30px 15px;
  border-radius: 40px;
}
.workspace-card{
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.workspace-col:nth-child(n) .workspace-card{
  background: linear-gradient(326.64deg, #FFFFFF 49.57%, #DDEEFF 106.56%);
}
.workspace-col:nth-child(2n) .workspace-card{
  background: linear-gradient(0.17deg, #FFFFFF 46.78%, rgba(221, 238, 255, 0.87) 126.84%);
}
.workspace-col:nth-child(3n) .workspace-card{
  background: linear-gradient(42.47deg, #FFFFFF 47.63%, #DDEEFF 124.64%);
}

.workspace-card .card-title{
  font-size: 28px;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}
.workspace-card-body{
  padding: 25px 0 0;
}
.workspace-card .card-text{
  font-size: 16px;
  line-height: 1.4;
  color: #757575;
  letter-spacing: -0.03em;
  margin: 0 0 25px;
}
.workspace-card-img{
  height: 235px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
}
.workspace-card-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.btn-launch{
  background: #00274D;
  border-radius: 60px;
  width: 100%;
  padding: 12px 20px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.03em;
  text-align: center;
  border: 1.5px solid transparent;
  transition: all 0.3s ease;
}
.btn-launch:hover, .btn-launch:focus{
  background: transparent;
  border-color: #00274D;
  color: #00274D;
}


@media (max-width: 1200px) {
  header strong {
    font-size: 42px;
  }
  header p {
    font-size: 16px;
  }
  header .logo {
    max-height: 75px;
  }
  .workspace-card-img {
    height: 165px;
  }
}

@media (max-width: 991.98px) {
  .workspace-card-img {
    height: 200px;
  }
  .workspace-card .card-title {
    font-size: 25px;
  }
}

@media (max-width: 767.98px) {
  header strong {
    font-size: 36px;
  }
  header p {
    font-size: 14px;
  }
  header .logo {
    max-height: 40px;
  }
  .workspace-card .card-title {
    font-size: 22px;
  }
  .btn-launch{
    font-size: 18px;
    padding: 9px 15px;
  }
  header, .workspace-hub{
    border-radius: 20px;
  }
  .workspace-card{
    border-radius: 10px;
  }
  .workspace-card-img{
    border-radius: 5px;
  }
  header p{
    margin-top: 4px;
  }
}

@media (max-width: 576px) {
  body{
    padding: 15px;
  }
  header{
    padding: 20px 10px;
  }
  header strong {
      font-size: 30px;
  }
  .btn-launch{
    font-size: 16px;
  }
  .workspace-hub{
    padding: 13px 0;
  }
  .workspace-card-img {
      height: 140px;
  }
  .workspace-card .card-text{
    line-height: 1.3;
  }
}