*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    background-color: white;
    font-family:'Roboto', sans-serif;
}
header {
        display: flex;
        background-color: #1F2937;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
         font-size: 24px;
          color:#F9FAF8;
    }

    header img {
        width: 120px; /* or whatever size your logo should be */
    }
    header nav{
        display: flex;
        gap:20px;
    }
    header nav a{
        text-decoration: none;
        color:white;
        font-weight:bold;
    }
    .hero{
        background-color: #1F2937;
        font-size: 48px;
        color:#F9FAF8;
        font-weight: 800;
        text-align: left;
        padding: 100px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .hero-text{
        max-width: 50%;
    }
    button{
        background-color:#3882F6;
        font-size: large;
        padding: 10px 20px;
        color: white;
        cursor: pointer;
        font-weight: bold;
        border: none;
    }

    .hero img{
        max-width:100%;
        height:auto;
    }
    .info{
        text-align: center;
        align-items: center;
        margin-top: 20px;
        font-size: 36px;
        font-weight: 900;
        color: #1F2937;
    }
    .flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 50px 20px;
  gap: 20px;
    
}

/* this selector selects all divs inside of .flex-container */
.flex-container div {
  background: white;
  text-align: center;
  border: 4px solid #3882F6;
  border-radius: 20px;
  padding: 20px;
  max-width: 250px;
  flex: 1 1 auto;
  
}
.flex-container div img{
    height:auto;
    width:100%;
    border-radius: 10px;
    margin-bottom: 10px;
    object-fit: cover;
}
.flex-container div p{
    font-size: 16px;
    color:#333;
    font-weight: bold;
}

    blockquote{
        background-color: #E5E7EB;
        display: flex;
        margin: 50px auto;
        font-size: 20px;
        max-width: 1000px;
        padding:50px 20px;
        text-align: center;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    blockquote p{
        max-width: 70%;
        margin: 0 auto;
        font-size: 36px;
        font-style: italic;
        color:#1F2937
    }
     blockquote footer{
        background-color: #E5E7EB;
       font-size: 18px;
       color: #333;
       font-weight: bold;
       font-style: italic;
       margin-top: 20px;
    }
    .cta{
        background-color: #3882F6;
        color: white;
        align-items: center;
        justify-content: space-between;
        display: flex;
        margin: 50px;
        border-radius: 10px;
        padding: 40px 60px;
    }
    .cta-text p{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .cta button {
        background-color: white;
        color:#3882F6;
        border: none;
        font-weight: bold;
        border-radius: 10px;
        padding:10px 20px;

    }
footer{
      background-color: #1F2937;
      font-size: 20px;
    text-align: center;
    bottom: 0;
    width:100%;
    color:white;    
}

@media screen and (max-width: 768px) {
    .flex-container{
        flex-direction: column;
        text-align: center;
    }
    img{
        order: -1;
        display: block;
        height: auto;
        max-width: 100%;
    }
    
}










