body {
    font-family: Arial, sans-serif;
    background-color: #d7b2b2;
    color: #333333;
    margin: 0;
  }
  
  header {
    background-color: #0066cc;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  nav {
    background-color: #0099ff;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
  }
  
  nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  nav li {
    margin-right: 20px;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
  }
  
  nav a:hover {
    color: #fff;
    background-color: #0066cc;
  }
  

  
  .hero {
    background-color: #ff4d4d;
    color: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .cta {
    background-color: #0e5e6b;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .cta button {
    background-color: #ff4d4d;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  
  .cta button:hover {
    background-color: #f2f2f2;
    color: #0e5e6b;
  }

/* Styles for the footer section */
footer {
    background-color: #333333;
    padding: 20px;
    text-align: center;
  }
  
  footer p {
    margin: 0;
    font-size: 18px;
    color: #ffffff;
  }  