/* Reset & Base Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
  
  body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    margin: 0 auto;
    padding: 10px;
  }
  
  /* Layout Containers */
  .container,
  .container1 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  .container1 {
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 30px 20px;
  }
  
  .article-container {
    padding-top: 4rem;
    font-size: 16px;
    font-weight: 400;
  }
  
  /* Titles & Meta Info */
  .main-title {
    color: #333;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  
  .meta-info {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 16px;
  }
  
  .author {
    color: #6b5b95;
    font-weight: 500;
  }
  
  /* Quotes */
  .quote,
  .quote-section .quote {
    font-style: italic;
    background-color: #f1f8ff;
    border-left: 4px solid #3498db;
    color: #555;
    font-size: 18px;
    padding: 20px 30px;
    margin: 30px 0;
    text-align: center;
    max-width: 900px;
    margin: 30px auto;
  }
  
  .quote em {
    font-weight: 600;
    color: #2980b9;
  }
  
  /* Sections */
  .content-section1 {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
  }
  
  .caption {
    color: #333;
    text-align: left;
    font-size: 16px;
    margin: 40px auto 0;
    max-width: 900px;
  }
  
  .intro {
    margin-bottom: 30px;
    font-size: 1rem;
  }
  
  /* Step Container */
  .step-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .step {
    padding: 24px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .step:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Step Colors */
  .step:nth-child(2) { border-left-color: #2ecc71; }
  .step:nth-child(3) { border-left-color: #f39c12; }
  .step:nth-child(4) { border-left-color: #9b59b6; }
  .step:nth-child(5) { border-left-color: #e74c3c; }
  
  /* Buttons */
  .button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .button1 {
    border: 1px solid #333;
    border-radius: 25px;
    padding: 10px 20px;
    min-width: 220px;
    text-align: center;
    color: #333;
    text-decoration: none;
    font-size: 16px;
  }
  
  /* Headings & Text */
  h1 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
  }
  
  h2 {
    color: #2c3e50;
    font-size: 28px;
    margin: 30px 0 20px;
    font-weight: 600;
  }
  
  p {
    font-size: 16px;
    margin-bottom: 16px;
  }
  
  ul, ol {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  
  li {
    margin-bottom: 10px;
    list-style-type: none;
    position: relative;
  }
  
 
  
  /* Custom Bullet Colors */
  .industry-list li:nth-child(1):before { color: #e74c3c; }
  .industry-list li:nth-child(2):before { color: #2ecc71; }
  .industry-list li:nth-child(3):before { color: #3498db; }
  
  .challenges-list li:before { color: #e67e22; }
  .features-list li:before { color: #9b59b6; }
  
  /* Figures */
  .figure {
    margin: 40px auto;
    text-align: center;
  }
  
  .figure img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  .figure-caption {
    margin-top: 10px;
    text-align: center;
    font-style: italic;
    color: #666;
  }
  
  /* Divider */
  hr {
    border: 0;
    height: 1px;
    background-color: #ddd;
    margin: 40px 0;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .button-container {
      flex-direction: column;
      align-items: center;
    }
  
    .container,
    .container1 {
      padding: 20px 16px;
    }
  
    .step {
      padding: 16px;
    }
  
    .main-title {
      font-size: 36px;
    }
  
    .quote {
      padding: 15px;
      font-size: 16px;
    }
  
    h1 {
      font-size: 24px;
    }
  
    h2 {
      font-size: 20px;
    }
  }
  