:root {
    --primary-color: #004B7C; /* Ontario blue */
    --secondary-color: #4D4D4D;
    --light-bg: #f8f9fa;
    --dark-text: #333;
    --light-text: #666;
    --white: #fff;
    --border-radius: 6px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  
  body {
    font-family: "Raleway", sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    /*background-color: var(--light-bg);*/
    margin: 0;
    padding: 20px;
  }
  
  /* Content container */
  .content-container {
    max-width: 980px;
    margin: 0 auto;

    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
  }
  
  /* Video styles */
  #ceocontent {
    margin-bottom: 0px;
    width: 100%;
  }
  
  .gbvid {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
  }
  
  /* Transcript header */
  .greensub-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    font-size: 1.4rem;
    margin: 30px 0 20px;
    display: block;
    width: 100%;
    font-weight: 600;
  }
  
  /* Transcript title */
  h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  /* Paragraphs */
  p {
    margin-bottom: 16px;
    line-height: 1.8;
  }
  
  /* Emphasis */
  /*em {
    color: var(--primary-color);
    font-style: italic;
  }*/
  
  /* Links */
  a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Non-breaking space class */
  .nobr {
    white-space: nowrap;
  }
  
  /* Last paragraph special styling */
  .last-pr {
    margin-top: 25px;
    font-weight: 500;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    body {
      padding: 10px;
    }
    
    .content-container {
      padding: 20px 15px;
    }
    
    .greensub-header {
      font-size: 1.3rem;
    }
    
    h3 {
      font-size: 1.2rem;
    }
  }