
    * { box-sizing: border-box; }
    body { margin: 0; font-family: sans-serif; line-height: 1.6; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    img { max-width: 100%; height: auto; display: block; }
    .nav-container { display: flex; justify-content: space-between; align-items: center; height: 60px; }
    .nav-links a { text-decoration: none; margin-left: 20px; }
    .hero { background-size: cover; background-position: center; position: relative; padding: 100px 0; text-align: center; color: white; }
    .hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
    .hero-content { position: relative; z-index: 1; }
    .content-section { padding: 60px 0; }
    .content-body { max-width: 800px; margin: 0 auto; }
    footer { padding: 40px 0; margin-top: 60px; }
    .footer-content { display: flex; justify-content: space-between; }
    .troubleshoot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 20px; }
    .issue { padding: 20px; border: 1px solid #ddd; }
    
    /* New Image Layout Styles */
    .section-content-wrapper { display: flex; align-items: center; gap: 40px; margin-top: 30px; }
    .section-image { flex: 1; }
    .section-image img { border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); width: 100%; object-fit: cover; height: 300px; }
    .content-body { flex: 1; }
    .content-section:nth-child(even) .section-content-wrapper { flex-direction: row-reverse; }

    /* Gallery Styles */
    .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
    .gallery-item img { width: 100%; height: 200px; object-fit: cover; border-radius: 4px; transition: transform 0.3s; }
    .gallery-item img:hover { transform: scale(1.05); }

    /* Mobile Responsive Base */
    @media (max-width: 768px) {
      .nav-container { flex-direction: column; height: auto; padding: 15px 20px; }
      .nav-links { margin-top: 15px; display: flex; flex-wrap: wrap; justify-content: center; width: 100%; }
      .nav-links a { margin: 5px 10px; font-size: 14px; }
      .hero h1 { font-size: 2.5rem !important; }
      .hero { padding: 60px 0; height: auto; min-height: 300px; }
      .content-section { padding: 40px 20px; }
      .troubleshoot-grid { grid-template-columns: 1fr; }
      .footer-content { flex-direction: column; text-align: center; gap: 20px; }
      .section-content-wrapper { flex-direction: column !important; gap: 20px; }
      .section-image img { height: auto; max-height: 300px; }
    }
  
      body { font-family: 'Share Tech Mono', monospace; background: #000; color: #e0e0e0; }
      .main-nav { background: #111; border-bottom: 1px solid #333; position: sticky; top: 0; z-index: 1000; }
      .logo { color: #ff0000; letter-spacing: 2px; font-family: 'Oswald'; }
      .nav-links a { color: #888; text-transform: uppercase; font-size: 14px; }
      .nav-links a:hover { color: #fff; text-shadow: 0 0 5px #ff0000; }
      .hero-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0.2), #000); }
      .cta-button { border: 1px solid #ff0000; color: #ff0000; padding: 10px 40px; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; }
      .cta-button:hover { background: #ff0000; color: black; }
      .content-section { border-bottom: 1px solid #222; }
      h2 { color: #fff; font-family: 'Oswald'; font-size: 2.5rem; }
      .issue { background: #111; border: 1px solid #333; }
      footer { background: #0a0a0a; border-top: 1px solid #333; }
      .section-image img { border: 1px solid #333; box-shadow: 0 0 20px rgba(255,0,0,0.1); }
    
    @media (max-width: 768px) {
      .theme-split .content-section .container { flex-direction: column; }
      .theme-split .content-section h2, .theme-split .content-body { width: 100%; border-right: none; }
      .theme-split .content-section h2 { border-bottom: 5px solid red; padding: 30px; }
      .theme-split .hero { padding-left: 20px; }
      
      .theme-brutalist body { border: 10px solid black; }
      .theme-brutalist .container { padding: 0 20px; }
      .theme-brutalist .hero h1 { font-size: 3rem !important; }
      
      .theme-timeline .content-section::before { left: 20px; }
      .theme-timeline h2 { left: 0; transform: none; margin-left: 40px; }
      .theme-timeline .content-body { margin-left: 40px; }
      .theme-timeline .content-body::before { left: -10px; }
    }
  