* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f8f8;
    color: #333;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
  }
  
  header {
    background: linear-gradient(135deg, #4e73df, #1cc88a);
    color: white;
    padding: 60px 0;
    text-align: center;
    border-radius: 10px;
  }
  
  header h1 {
    font-size: 2.5rem;
    font-weight: 600;
  }
  
  header p {
    font-size: 1.2rem;
    margin-top: 10px;
  }
  
  .courses {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
  }
  
  .course {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 30%;
  }
  
  .course h2 {
    color: #4e73df;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .course p {
    font-size: 1rem;
  }
  
  .cta {
    background-color: #1cc88a;
    color: white;
    padding: 50px 0;
    text-align: center;
    border-radius: 10px;
    margin-top: 50px;
  }
  
  .cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .cta p {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .contact p {
    font-size: 1.2rem;
  }
  
  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
    border-radius: 8px;
  }
  
  footer p {
    font-size: 1rem;
  }
  
  a {
    color: white;
    text-decoration: none;
  }
  
  @media (max-width: 768px) {
    .courses {
      flex-direction: column;
      align-items: center;
    }
  
    .course {
      width: 80%;
      margin-bottom: 20px;
    }
  
    .cta {
      padding: 40px 20px;
    }
  }
  
  .button {
    display: inline-block;
    background-color: #4e73df;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    margin: 10px 5px;
    transition: background-color 0.3s ease;
  }
  
  .button:hover {
    background-color: #1cc88a;
  }
  

   
  .me a {
    text-decoration: none;  /* Removes the underline from the link */
    font-size: 1.2rem;  /* Adjusts the font size */
    color: #4e73df;  /* Sets the text color */
    padding: 10px 20px;  /* Adds padding around the link */
    border: 2px solid #4e73df;  /* Adds a border to the link */
    border-radius: 5px;  /* Rounds the corners */
    transition: all 0.3s ease;  /* Adds a smooth transition for hover effects */
    background-color: black;
  }
  
  .me a:hover {
    background-color: #4e73df;  /* Changes background color on hover */
    color: white;  /* Changes text color on hover */
  }
 