/* CSS for Insight Sharing Page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, sans-serif;
  }
  
  body {
    background: #f9fafb;
    color: #202124;
    line-height: 1.6;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
  }
  
  header {
    text-align: center;
    margin-bottom: 40px;
    padding: 50px;
    background: linear-gradient(135deg, #1a73e8, #4285f4);
    color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .header-content h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .header-content p {
    font-size: 1.4em;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
  }
  
  .insight-section {
    max-width: 900px;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    width: 90%;
  }
  
  .insight-content h3 {
    font-size: 1.8em;
    color: #1a73e8;
    margin-top: 20px;
  }
  
  .insight-content p {
    font-size: 1.2em;
    color: #5f6368;
    margin-top: 10px;
    line-height: 1.8;
  }
  
  .footer {
    margin-top: auto;
    padding: 20px;
    text-align: center;
    background: #1a73e8;
    color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 0.9em;
    width: 100%;
  }
  
  @media (max-width: 600px) {
    .header-content h1 {
      font-size: 2.8em;
    }
  
    .header-content p {
      font-size: 1.2em;
    }
  
    .insight-content h3 {
      font-size: 1.5em;
    }
  
    .insight-content p {
      font-size: 1em;
    }
  }
  
  @media (max-width: 1024px) {
    .insight-section {
      width: 95%;
    }
  }
  