body {
    margin: 0;
    font-family: 'Georgia', serif;
    background: url('https://web.archive.org/web/20220815105233im_/https://www.austinrainguttersolutions.com/images/bg_texture.jpg') repeat;
    color: #fff;
  }
  
  .container {
    display: flex;
    flex-direction: row;
  }
  
  .sidebar {
    background-color: #444;
    width: 260px;
    padding: 40px 20px;
    box-sizing: border-box;
    font-style: italic;
  }
  
  .sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .sidebar ul li {
    margin-bottom: 10px;
  }
  
  .sidebar ul li a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    display: block;
    padding: 8px 12px;
  }
  
  .sidebar ul li.active a {
    background-color: #f7931e;
    font-weight: bold;
    border-radius: 4px 10px 10px 4px;
  }
  
  .content {
    flex: 1;
    background-color: #2b2b2b;
    padding: 30px;
    box-sizing: border-box;
  }
  
  .topbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto; 
    padding: 10px 20px;
  }
  
  .topbar a {
    font-size: 14px;
    background: #f7931e;
    padding: 6px 12px;
    border-radius: 3px;
    color: #fff;
    text-decoration: none;
  }
  
  h1 {
    font-style: italic;
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .hero {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .hero img {
    width: 100%;
    max-width: 380px;
    border: 1px solid #555;
  }
  
  .hero .text {
    max-width: 500px;
  }
  
  .hero .text h2 {
    font-size: 20px;
    font-style: italic;
    margin-top: 0;
  }
  
  .hero .text p {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: linear-gradient(to bottom, #fbb03b, #f7931e);
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
  }
  
  .btn::after {
    content: '\25B6';
    margin-left: 8px;
    font-size: 10px;
  }
  
  .divider-1 {
    border-top: 1px dotted #666;
    padding-bottom: 25px;
  }

  .divider-2 {
    border-top: 1px dotted #666;
    margin: 30px 0;
  }
  
  .badge {
    text-align: center;
    margin-top: 20px;
  }
  
  .badge img {
    max-width: 140px;
  }
  
  .badge p {
    font-size: 12px;
    margin-top: 10px;
    color: #aaa;
  }
  
  .orange-headline {
    font-size: 22px;
    font-style: italic;
    font-weight: bold;
    color: #f7931e;
    margin-top: 40px;
    text-align: center;
  }
  
  .sub-orange {
    text-align: center;
    color: #ff9900;
    font-size: 16px;
    margin-top: 5px;
  }
  
  .services {
    margin-top: 30px;
  }
  
  .services h3 {
    color: #90ee90;
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .services ul {
    padding-left: 20px;
    column-count: 2;
  }
  
  .services ul li {
    color: #90ee90;
    font-size: 15px;
    margin-bottom: 8px;
  }
  
  .services .price {
    color: #90ee90;
    font-weight: bold;
    margin-top: 10px;
    font-size: 16px;
  }
  
  .footer-bbb {
    text-align: center;
    margin: 30px 0;
  }
  
  .footer-bbb img {
    max-width: 120px;
  }
  
  .footer-note {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    margin-top: 20px;
  }
  
  .mobile-header {
    display: none !important;
    background: #444;
    color: white;
    padding: 15px 20px;
    justify-content: space-between;
    align-items: center;
  }
  
  .hamburger {
    font-size: 22px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }
  
  .show {
    display: block !important;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }
  
    .sidebar.desktop-only {
      display: none;
    }
  
    .mobile-header {
      display: flex !important;
    }
  
    .sidebar {
      display: none;
      width: 100%;
      padding: 20px;
      background-color: #444;
      box-sizing: border-box;
    }
  
    .sidebar ul li a {
      padding: 10px;
      font-size: 16px;
    }
  
    .hero {
      flex-direction: column;
      align-items: center;
    }
  
    .hero img {
      max-width: 100%;
    }
  
    .hero .text {
      max-width: 100%;
      text-align: center;
    }
  
    .services ul {
      column-count: 1;
    }
  }
  