.rockfort-section {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;

}

.rockfort-section h1 {
    /* color: #054698; */
    color: #ff3400;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.rockfort-section h2 {
    /* color: #2b5c7e; */
    color: #ff3400;
    font-size: 1.5rem;
    margin-top: 30px;
}

.rockfort-section p,
.rockfort-section li {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}




.two-div {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-direction: row;
}

@media (max-width: 768px) {
    .two-div {
        flex-direction: column;
        gap: 30px;
        /* You can adjust this value as needed */
    }
}

.row-reverse{
    flex-direction: row-reverse;
    flex-wrap: wrap;
}

.highlight-list {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
   gap: 10px;
}
.highlight-list li{
    width: 100%;
       padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
         border-radius: 10px;
          background: #fff; 
          font-size: 18px;
          margin: 0;
          line-height: 1.5;
          display: flex;
          flex-direction: row;
}

@media screen and (max-width:425px) {
    .highlight-list{
        grid-template-columns: 1fr;
    }
}