    /* Global Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f4f4f4;
    }

    /* Lead Section */
    .lead-section {
      background-color: #1a1a1a;
      color: white;
      padding: 40px 20px;
      text-align: center;
    }

    .title-container h1 {
      font-size: 2.5em;
      margin-bottom: 20px;
    }

    /* Lead Image Container */
    .lead-image-container {
      margin: 0 auto;
      padding: 20px;
    }

    .lead-image img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    /* Blog Wrapper */
    .blog-wrapper {

      margin: 0 auto;
      padding: 20px;
      background-color: white;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    /* Flex Container */
    .flex-container {
      display: flex;
      gap: 30px;
      margin-bottom: 30px;
    }

    /* About Company */
    .about_company {
      flex: 1;
      background-color: #f8f8f8;
      padding: 20px;
      border-radius: 8px;
    }

    .about_company_title {
      font-weight: bold;
      font-size: 1.2em;
      display: block;
      margin-bottom: 10px;
      color: #1a1a1a;
    }

    .about_company_text {
      display: block;
      margin-bottom: 15px;
      color: #666;
    }

    .about_company_social {
      display: flex;
      gap: 15px;
    }

    .about_company_social a {
      display: inline-block;
      width: 30px;
      height: 30px;
    }

    /* Table of Contents */
    #toc {
      flex: 2;
      background-color: #f8f8f8;
      padding: 20px;
      border-radius: 8px;
    }

    #toc b {
      font-size: 1.2em;
      display: block;
      margin-bottom: 15px;
      color: #1a1a1a;
    }

    #toc ul {
      list-style: none;
      padding-left: 0;
    }

    #toc ul ul {
      padding-left: 20px;
      margin-top: 5px;
    }

    #toc li {
      margin-bottom: 8px;
    }

    #toc a {
      color: #0066cc;
      text-decoration: none;
    }

    #toc a:hover {
      text-decoration: underline;
    }

    #toc details {
      margin-bottom: 8px;
    }

    #toc summary {
      cursor: pointer;
      color: #0066cc;
    }

    /* Summary */
    #summary {
      background-color: #e8f4f8;
      padding: 20px;
      border-radius: 8px;
      margin-bottom: 30px;
      border-left: 4px solid #0066cc;
    }

    #summary strong {
      font-size: 1.2em;
      display: block;
      margin-bottom: 10px;
      color: #1a1a1a;
    }

    /* Headings */
    h2 {
      font-size: 2em;
      margin-top: 30px;
      margin-bottom: 20px;
      color: #1a1a1a;
    }

    h3 {
      font-size: 1.5em;
      margin-top: 25px;
      margin-bottom: 15px;
      color: #333;
    }

    /* Paragraphs */
    p {
      margin-bottom: 15px;
      line-height: 1.8;
    }

    /* Callouts */
    .callout {
      margin: 20px 0;
      padding: 20px;
      border-radius: 8px;
      position: relative;
    }

    .callout_left {
      background-color: #f0f8ff;
      border-left: 4px solid #0066cc;
      margin-right: 20%;
    }

    .callout_right {
      background-color: #f8f0ff;
      border-right: 4px solid #6600cc;
      margin-left: 20%;
    }

    .callout_text {
      font-style: italic;
      margin-bottom: 15px;
      display: block;
    }

    .callout_left_cta_button,
    .callout_right_cta_button {
      display: inline-block;
    }

    .callout_left_cta_button a,
    .callout_right_cta_button a {
      background-color: #0066cc;
      color: white;
      padding: 10px 20px;
      text-decoration: none;
      border-radius: 5px;
      display: inline-block;
      transition: background-color 0.3s;
    }

    .callout_left_cta_button a:hover,
    .callout_right_cta_button a:hover {
      background-color: #0052a3;
    }

    /* References */
    #references {
      background-color: #f8f8f8;
      padding: 20px;
      border-radius: 8px;
      margin-top: 30px;
    }

    #references strong {
      font-size: 1.2em;
      display: block;
      margin-bottom: 15px;
      color: #1a1a1a;
    }

    #references ol {
      padding-left: 20px;
    }

    #references li {
      margin-bottom: 8px;
    }

    #references a {
      color: #0066cc;
      word-break: break-all;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .flex-container {
        flex-direction: column;
      }

      .callout_left,
      .callout_right {
        margin-left: 0;
        margin-right: 0;
      }

      .title-container h1 {
        font-size: 1.8em;
      }
    }