body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
  }
  
  .container {
    padding: 20px;
  }
  
  .logo {
    max-width: 80%; /* Adjust logo size for responsiveness */
    height: auto;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  h2, h3, h4 {
    margin: 20px 0;
    color: #444;
  }
  
  a {
    color: #007BFF;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  .btn {
    background-color: #007BFF;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .btn:hover {
    background-color: #0056b3;
  }
  
  .iframe-container {
    margin: 20px 0;
  }
  
  .social img {
    margin-top: 10px;
    width: 100px;
    height: auto;
  }
  
  .social {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  /* Responsive design */
  @media (max-width: 600px) {
    .container {
      padding: 10px;
    }
    
    .logo {
      max-width: 100%; /* Full width on smaller screens */
    }
  
    .social img {
      width: 80px; /* Smaller social icons on mobile */
    }
  }
  