/* Reset and global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  /* Header, hero, and footer styles */
  header,
  .hero,
  footer {
    background-color: #1F2937;
    color: #F9FAF8;
  }
  
  /* Header styles */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }
  
  .header-logo {
    font-size: 24px;
    font-weight: bold;
  }
  
  /* Navigation styles */
  nav {
    display: flex;
    gap: 1rem;
  }
  
  .header-link {
    font-size: 18px;
    color: #E5E7EB;
    text-decoration: none;
  }
  
  /* Hero section styles */
  .hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 2rem;
    width: 100%;
  }
  
 .hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  margin-right: 2rem;
}
 .hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    margin-right: 2rem;
  }
  
  .hero h2 {
    font-size: 48px;
    font-weight: 800;
  }
  
  .hero p {
    font-size: 18px;
    color: #E5E7EB;
  }
  
  .hero img {
    width: 30%;
    height: auto;
  }
  
  
  .hero button {
    background-color: #3882F6;
    color: #F9FAF8;
    font-size: 18px;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
    align-self: flex-start;
  }
  
  /* Main section styles */
  main {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
  }
  
  /* Information section styles */
  .information {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 2rem;
  }
  
  .information h3 {
    font-size: 36px;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 1rem;
  }
  
  /* Illustrations styles */
  .illustrations {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
  }
  
  .illustration {
    background-color: #3882F6;
    border-radius: 10px;
    padding: 1rem;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .illustration p {
    font-size: 18px;
    color: #1F2937;
    position: absolute;
    bottom: -25px;
    width: 100%;
    text-align: center;
  }
  
  /* Quote section styles */
  .quote {
    background-color: #E5E7EB;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    width: 100%;
  }
  
  .quote p {
    font-size: 36px;
    font-style: italic;
    font-weight: 300;
    color: #1F2937;
  }
  
  .quote cite {
    display: block;
  } 
  /* Call-to-action section styles */
.call-to-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #3882F6;
    color: #F9FAF8;
    padding: 2rem;
  }
  
  .call-to-action .cta-content {
    flex: 1;
    padding-right: 2rem;
  }
  
  .call-to-action h4 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 1rem;
  }
  
  .call-to-action p {
    font-size: 18px;
    margin-bottom: 1rem;
  }
  
  .call-to-action button.cta-button {
    background-color: #F9FAF8;
    color: #3882F6;
    font-size: 18px;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
  }
  