
  .seasonal-moments-module {
    padding: 20px 0;
    background-color: #fff;
  }
  
  .module-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .module-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #c0392b;
    margin-bottom: 40px;
    position: relative;
    font-family: Helvetica, Arial, sans-serif;
  }
  
  .module-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2.5px;
    background-color: #c0392b;
    border-radius: 2px;
    transition: width 0.3s ease;
  }
  
  .module-title:hover::after {
    width: 160px;
  }
  
  .single-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  

  
  .images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  
  .image-item {
    width: 100%;
    height: 280px;
    overflow: hidden;
  }
  
  .image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
  }
  
  .content-item p {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin: 0;
    font-family: Helvetica, Arial, sans-serif;
  }
  
  .content-item strong {
    color: #c0392b;
    font-weight: bold;
  }
  
  /* Responsive design */
  @media (max-width: 1024px) {
    .images-grid,
    .content-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .image-item:last-child,
    .content-item:last-child {
      grid-column: 1 / -1;
      max-width: 50%;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 768px) {
    .images-grid,
    .content-grid {
      grid-template-columns: 1fr;
    }
    
    .image-item:last-child,
    .content-item:last-child {
      max-width: 100%;
    }
    
    .module-title {
      font-size: 2rem;
    }
    
    .image-item {
      height: 240px;
    }
  }
  
  @media (max-width: 480px) {
    .module-title {
      font-size: 1.8rem;
    }
    
    .image-item {
      height: 200px;
    }
    
    .content-grid {
      padding: 15px;
      gap: 15px;
    }
  }
