:root {
    --orange: #ff6f00;
    --white: #fff;
    --dark-gray: #333;
  }
  
  body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
  }
  
  .top-bar {
    background-color: var(--orange);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .location {
    font-weight: 500;
  }
  
  .logo {
    display: flex;
    align-items: baseline;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .logo-bold {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    line-height: 1;
  }
  
  .logo-dot {
    font-size: 2.2rem;
    font-weight: 500;
    color: white;
    margin-left: 0.2rem;
    position: relative;
    top: -6px;
  }
  
  .top-links a {
    margin-left: 1.2rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
  }
  
  .top-links a:hover {
    text-decoration: underline;
  }
  
  .main-nav {
    background-color: var(--orange);
    display: flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
  }
  
  .main-nav a {
    margin-right: 1.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
  }
  
  .main-nav a:hover {
    background-color: var(--white);
    color: var(--orange);
    padding: 5px;
    border-radius: 5px;
  }
  
  .search-icon {
    margin-left: auto;
    font-size: 1rem;
    color: var(--white);
    cursor: pointer;
  }
  
  .article {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
  }
  
  h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-top: 2rem;
  }
  
  p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
  }
  
  blockquote {
    background-color: #f0f0f0;
    padding: 1rem;
    font-style: italic;
    border-left: 5px solid var(--orange);
    margin: 1.5rem 0;
  }
  
  .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
  }

  .footer {
    background-color: #333; /* Dark background color */
    color: #fff; /* White text */
    text-align: center; /* Centered text */
    padding: 0.2rem; /* Very small padding */
    position: fixed; /* Fix it at the bottom of the page */
    bottom: 0;
    width: 100%;
    font-size: 0.6rem; /* Small font size */
    box-sizing: border-box;
    z-index: 999; /* Ensure it’s above other content */
  }
  
  .footer p {
    margin: 0; /* Remove any default margin */
  }
  
  .evidence {
    background-color: #fff;
    padding: 2rem 1.5rem;
    max-width: 800px;
    margin: 2rem auto;
    border-left: 6px solid var(--orange);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 8px;
  }
  
  .evidence-title {
    font-size: 1.6rem;
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .evidence-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .evidence-image {
    max-width: 100%;
    border-radius: 6px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem;
  }
  
  .evidence-caption {
    font-size: 0.95rem;
    color: var(--dark-gray);
    text-align: center;
    max-width: 90%;
  }
  