.content-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
      font-family: 'Outfit', sans-serif;
    }
    
    .gallery-wrapper {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      margin: 20px auto 0;
      max-width: 1400px;
      padding: 0 20px;
    }
    
    .gallery-item {
      width: 100%;
      overflow: hidden;
      border-radius: 8px;
    }
    
    .gallery-item img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      transition: transform 0.3s ease;
    }
    
    .gallery-item img:hover {
      transform: scale(1.02);
    }
    
    @media (max-width: 1200px) {
      .gallery-wrapper {
        max-width: 1000px;
      }
    }
    
    @media (max-width: 768px) {
      .gallery-wrapper {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 25px;
      }
    }
    
    @media (max-width: 480px) {
      .gallery-wrapper {
        padding: 0 15px;
        gap: 20px;
      }
    }
    h1 {
      margin-bottom: 20px;
      font-family: var(--mahal-font);
    }
    h2 {
      margin-top: 30px;
      margin-bottom: 15px;
      font-family: var(--mahal-font);
    }
    p, li {
      margin-bottom: 15px;
      line-height: 1.6;
      font-family: var(--template-font);
    }
    ul {
      padding-left: 20px;
      margin-bottom: 20px;
    }
    li {
      margin-bottom: 8px;
    }