* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #f9f9f9, #e0f7fa);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
  }
  
  .container {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
  }
  
  .company-name {
    font-size: 2.5rem;
    color: #0077b5;
    margin-bottom: 10px;
  }
  
  .slogan {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
  }
  
  .linkedin-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
  }
  
  .linkedin {
    background-color: #0077b5;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .linkedin:hover {
    background-color: #005582;
  }
  
  .email {
    font-size: 0.95rem;
    color: #333;
  }
  
  .demo-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 15px;
    background-color: #0073b1; /* LinkedIn Blue */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .demo-button:hover {
    background-color: #005582;
  }
  .slogan-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-left: 8px;
  }
  
  
  