/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #F4F7F9;
    color: #333;
  }
  /* I hate CSS */
  .ceo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .ceo-content {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .ceo-image {
    max-width: 250px;
    height: auto;
    margin-right: 30px;
  }
  
  .ceo-text {
    max-width: 500px;
  }
  
  .ceo-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .ceo-text p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.6;
  }
  
  .buttons {
    display: flex;
    gap: 10px;
  }
  
  .about-button, .cto-button {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
  }
  
  .about-button:hover, .cto-button:hover {
    background-color: #0056b3;
  }
  