body {
    font-family: Roboto,'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 18px;
    margin: 0;
    padding: 0;
}

header,
footer {
    margin: 0;
    padding: 0 10%;
}

header {
    background: #1f2937;
    display: flex;
    justify-content: space-between;
    padding: 1% 10%;
}

.header-logo {
    width: auto;
    height: 72px;
    align-self: center;
}

ul {
    list-style-type: none;
    display: flex;
    padding: 0;
    margin: 0;
    height: 72px;
    justify-content: center;
    align-items: center;
}

li a {
    text-decoration: none;
    color: #ffffff;
    padding-left: 20px;
}

.hero {
    background: #1f2937;
    padding: 2% 10%;
    display: flex;
    justify-content: space-evenly; 
  }
  
.column1, .column2 {
    /* flex: 1; Or  */
    width: 50%;
  }

.column1 {
    padding-right: 5%;
    align-self: center;
}


/* Base button styles */
.button {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }

.cta .button {
    border: 3px solid #fff;
}
  
  /* Default button color */
  .button {
    background-color: #3882f6;
    color: #fff; 
    text-decoration: none;
  }
  
  /* Hover effect */
  .button:hover {
    text-decoration: underline;
    background-color: #0064a7; 
    color: #fff; 
  }

  .cta .button:hover {
    border: 3px solid #0064a7;
  }
  
  /* Focus effect */
  .button:focus {
    outline: none; /* Remove default outline */
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  }

h1 {
    font-size: 48px;
    color: #f9faf8;
    font-weight: 800;
    margin: 0;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
}

h3 {
    font-size: 22px;
    text-align: right;
}

h4,
.cta-text {
    padding: 0;
    margin: 0;
}

.hero-text {
    color: #ffffff;
}

.hero-image {
    width: 100%
}

.container {
    margin: 0;
    padding: 2% 10%;
}


.four-image {
    display: flex;
    justify-content: center;
}

.card {
    display: flex;
    flex-direction: column;
    width: 200px;
    height: auto;
    padding: 1%;
    flex-wrap: wrap;
    text-align: center;
    color:#1f2937;
    padding: 2%;
}

.smaller-image {
   border: 5px solid #3882f6; 
   border-radius: 15px;
}

.quote-banner {
    background: #e5e7eb;
    margin: 0;
    padding: 2% 20%;
}

.quote {
    font-size: 36px;
    font-weight: 300;
    font-style: italic;
    color: #1f2937;
}

.call-to-action-banner {
    margin: 0;
    padding: 5% 10%;
}

.cta {
    display: flex;
    background: #3882f6;
    padding: 2% 10%;
    justify-content: space-between;
    color: #f9faf8;
    border-radius: 15px;
    align-items: center;
}

footer {
    height: 72px;
    background: #1f2937;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}