#banner{
    height: auto;
    overflow: visible;
    padding-bottom: 20px;
}

.menu-wrapper{
    margin-top: 0px;
}

.green-title{
    background: linear-gradient(90deg, #0077cc, #00b894);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 36px;
    line-height: normal;
    font-weight: 700;
}

#hero-text {
  margin-top: 60px;
  font-size: 42px;
  text-align: left;
  background: linear-gradient(114deg,  antiquewhite, white, white, white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
#sub-hero-text{
    width: 100%;
    font-family: Inter;
    font-size: 14px;
    margin-top: 7px;
    text-align: left;
    margin-top: -7px;
    margin-bottom: 30px;
    text-align: center;
}

#content-box{
    display: flex;
    flex-wrap: wrap;
    font-family: Inter;
    color: rgb(80, 80, 80);
    line-height: 20px;
    font-size: 15px;
    font-weight: 500px;
    max-width: 1080px;
    min-height: 300px;
    padding: 20px;
    margin: auto;
    margin-top: 0px;
    background-color: white;
    border-radius: 10px;
    position: relative;
}

#content-box h2{
    font-size: 21px;
    line-height: normal;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 20px;
}

.icon-title{
    font-size: 21px;
    line-height: normal;
    font-weight: 500;
    margin-top: 25px;
    margin-bottom: 20px;   
}

/* Cybersecurity Services List */
.grid-list ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.grid-list li {
  background-color: #f8f9fa;
  padding: 20px 24px;
  border-left: 4px solid #a7b7cb; /* Red accent line */
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.6;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.grid-list li strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
  color: #111;
  font-weight: 600;
}

.grid-list li.red{
    border-left: 4px solid #daa978; /* Red accent line */
}

.grid-list li.blue{
    border-left: 4px solid royalblue; /* Red accent line */
}

@media (min-width: 768px) {
  .grid-list ul {
    grid-template-columns: 1fr 1fr;
  }
}

.left {
  width: 70%;
  padding-bottom: 30px;
}

.right {
  width: calc(30% - 15px);
  padding-left: 15px;
}

#content-box p{
    padding-top:10px;
    width: 100%
}

.highlight{
    font-size: 26px;
    line-height: normal;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 20px;
    color: rgb(153, 153, 153);
}

.highlight-blue{
    color: rgb(21, 109, 185);
}

.highlight-red{
    color: crimson;
}

.highlight-green{
    color: forestgreen;
}

@media (max-width: 768px) {

    body{
        background-image: url(../images/bg-mobile-v2.png?v=2);
        background-size: 100% 520px;
    }

    #content-box {
        flex-direction: column-reverse; /* Right goes on top */
    }

    .left,
    .right {
        width: 100%;
    }

    .left{
        padding-left: 0px;
    }

    .right img{
        display: none;
    }

    #hero-text{
        max-width: 95%;
    }

    #sub-hero-text{
        margin-top: 10px;
        margin-bottom: 60px;
    }

    #content-box p{
        padding-top:10px;
        width: 100%
    }

    .highlight{
        font-size: 25px;
        line-height: normal;
        font-weight: 200;
        margin-top: 10px;
        margin-bottom: 20px;
    }
}