body {
      font-family: 'Inter', sans-serif;
      background-color: #181818;
      color: #f2f2f2;
      margin: 0;
      padding: 0;
    }
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background-color: #232323;
      color: #fff7e6;
      backdrop-filter: blur(10px);
      position: sticky;
      top: 0;
      z-index: 10;
      border-bottom: 1px solid #eee;
    }
    .logo {
      font-weight: 600;
      font-size: 1.25rem;
      color: #ff7700;
    }
    .nav-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
    }
    .desktop-nav {
      display: flex;
      gap: 1.5rem;
    }
    .mobile-nav {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 20px;
      background-color: #232323;
      color: #fff7e6;
      border: 1px solid #ddd;
      padding: 1rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      z-index: 999;
    }
    .mobile-nav.show {
      display: flex;
    }
    nav a {
      text-decoration: none;
      color: #fff7e6;
      font-weight: 500;
      transition: color 0.3s ease;
    }
    nav a:hover {
      color: #ff7700;
    }
    @media (max-width: 768px) {
      .nav-toggle {
        display: block;
      }
      .desktop-nav {
        display: none;
      }
    }
    .container {
      max-width: 1000px;
      margin: auto;
      padding: 2rem;
    }
    header {
      text-align: center;
      padding: 4rem 1rem 2rem;
    }
    h1 {
      font-size: 2.75rem;
      color: #ff7700;
      margin-bottom: 1rem;
    }
    p {
      font-size: 1.125rem;
      line-height: 1.6;
    }
    .section {
      background-color: #212121;
      color: #e5e5e5;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      margin-top: 3rem;
    }
    input, textarea, button {
      width: 100%;
      padding: 1rem;
      margin-top: 1rem;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 1rem;
      box-sizing: border-box;
    }
    button {
      background-color: #ff7700;
      color: white;
      font-weight: bold;
      border: none;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    button:hover {
      background-color: #003a7b;
    }
    .section-heading {
      font-size: 1.75rem;
      margin-bottom: 1rem;
      color: #ff7700;
    }
    ul {
      padding-left: 1.5rem;
    }
    blockquote {
      font-style: italic;
      margin: 1rem 0;
      padding-left: 1rem;
      border-left: 4px solid #ff7700;
      color: #555;
    }
    footer {
      padding: 2rem;
      background-color: #141414;
      color: #cccccc;
    }
    .footer-columns {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }
    .footer-columns div {
      min-width: 200px;
      margin-bottom: 1rem;
    }
    .footer-columns a {
      color: #ff7700;
      text-decoration: none;
      margin-right: 10px;
    }
    footer a {
      color: inherit;
      text-decoration: none;
    }
    footer a:hover {
      color: inherit;
      text-decoration: underline;
    }
    /* Scroll to top button */
    #scrollTopBtn {
      display: none;
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 9999;
      background: #ff7700;
      border: none;
      color: #181818;
      border-radius: 6px;
      width: 42px;
      height: 42px;
      font-size: 1.7rem;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.13);
      transition: background 0.2s;
      opacity: 0.9;
    }
    #scrollTopBtn:hover {
      background: #ffa94d;
      color: #292929;
      opacity: 1;
    }
    /* Gallery styles */
    .gallery-section {
      background-color: #333232;
      color: #faf0fa;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      margin-top: 3rem;
      margin-bottom: 3rem;
    }
    .gallery-carousel {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
    }
    .gallery-carousel img {
      max-width: 350px;
      max-height: 320px;
      width: 100vw;
      height: auto;
      border-radius: 14px;
      box-shadow: 0 2px 22px rgba(156,0,120,0.2);
      background: #faf0fa;
      object-fit: contain;
      border: 3px solid #ff7700;
    }
    .gallery-btn {
      background: #ff7700;
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 42px;
      height: 42px;
      font-size: 1.5rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }
    .gallery-btn:hover {
      background: #ffa94d;
      color: #292929;
    }
    .gallery-thumbs {
      margin-top: 1rem;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .gallery-thumbs img {
      width: 56px;
      height: 56px;
      object-fit: cover;
      border-radius: 6px;
      border: 2px solid #ff7700;
      opacity: 0.6;
      cursor: pointer;
      transition: opacity 0.2s, border 0.2s;
    }
    .gallery-thumbs img.active {
      opacity: 1;
      border: 2px solid #ff7700;
    }
    @media (max-width: 700px) {
      .gallery-carousel img {
        max-width: 90vw;
      }
      .gallery-section {
        padding: 1rem;
      }
      .section {
        padding: 1rem;
      }
    }
