/* Section styles */
#custom-grid-section {
      padding: 30px 20px;
      background-color: #f9f9f9;
      font-family: sans-serif;
    }
    
    .custom-grid-title {
      text-align: center;
      margin-bottom: 30px;
      font-size: 2rem;
      color: #333;
    }
    
    /* 3 rows x 2 columns grid */
    .custom-grid-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr); /* 2 columns */
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
    }
    
    .custom-grid-item {
      background-color: #fff;
      padding: 15px;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      text-align: center;
      opacity: 0;
      transform: translateY(10px);
      animation: fadeUp 0.6s forwards;
    }
    
    .custom-grid-item:nth-child(1) { animation-delay: 0s; }
    .custom-grid-item:nth-child(2) { animation-delay: 0.2s; }
    .custom-grid-item:nth-child(3) { animation-delay: 0.4s; }
    .custom-grid-item:nth-child(4) { animation-delay: 0.6s; }
    .custom-grid-item:nth-child(5) { animation-delay: 0.8s; }
    .custom-grid-item:nth-child(6) { animation-delay: 1s; }
    
    .custom-grid-img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }
    
    .custom-grid-desc {
      margin-top: 10px;
      font-size: 0.95rem;
      color: #555;
    }
    
    /* Animation */
    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* Responsive for small screens */
    @media (max-width: 600px) {
      .custom-grid-container {
        grid-template-columns: 1fr;
      }
    
      .custom-grid-title {
        font-size: 1.5rem;
      }
    
      .custom-grid-desc {
        font-size: 0.9rem;
      }
    }
    