/* Hero */
.hero {
    background: url('images/infrastructurehero.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
  }
  
.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }
  
.hero p {
    font-size: 1.2rem;
  }

/* Intro */
.intro-section {
  padding: 60px 20px;
  background: white;
}
.intro-section .container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}
.intro-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.intro-section p {
  font-size: 1.1rem;
}

/* Overview */

.overview h2{
    text-align: left;
    font-size: 2.0rem;
    margin-left: 10%;
  }

.overview h3{
    text-align: left;
    font-size: 1.5rem;
    margin-left: 10%;
}

.overview h4{
    text-align: left;
    font-size: 1.1rem;
    margin-left: 11%;
}

.overview p {
    text-align: left;
    font-size: 1.1rem;
    margin-left: 12%;
    margin-right: 12%;
    
}

 /* Features */
.container{
    text-align: center;
    margin-bottom: 5%;
 }
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
    margin-left: 5%;
    margin-right:5%;
  }
  
.feature-box {
    background: #16436f;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: white;
  }



  
/* contact */

.cta {
    background: white;
    color: black;
    text-align: center;
    padding: 40px 10px;
}

.call {
    color: #16436f;
    font-weight: bold;
    text-decoration: none;
    font-size: 20px;
}