
    * { 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: 'Inter', sans-serif; background: #fff; color: #111; }
      .main-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(5px); }
      .logo { font-weight: 300; letter-spacing: -1px; font-size: 24px; }
      .nav-links a { color: #111; border-bottom: 1px solid transparent; }
      .nav-links a:hover { border-bottom: 1px solid #cc0000; }
      .hero { height: 80vh; display: flex; align-items: center; justify-content: center; background-attachment: fixed; margin-top: 60px; }
      .hero h1 { font-size: 4rem; font-weight: 200; letter-spacing: -2px; margin-bottom: 10px; }
      .cta-button { background: black; color: white; padding: 20px 40px; border-radius: 50px; text-decoration: none; transition: transform 0.2s; }
      .cta-button:hover { transform: scale(1.05); }
      .content-section { padding: 100px 0; }
      h2 { font-weight: 900; font-size: 3rem; margin-bottom: 40px; color: #000; letter-spacing: -1px; }
      .issue { border: none; background: #f9f9f9; border-radius: 20px; }
      footer { background: #f9f9f9; color: #000; }
      .section-image img { border-radius: 0; filter: grayscale(100%); transition: filter 0.3s; }
      .section-image img:hover { filter: grayscale(0%); }
    
    @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; }
    }
  