    .notice-section {
      padding: 50px 15px;
      background: linear-gradient(135deg, #cc83b0, #ff7c67);
    }
    
    .container {
      width: 100%;
      max-width: 1400px;
      margin: auto;
    }
    
    .notice-section-title {
      margin: auto;
      margin-bottom: 35px;
    }
    
    .notice-section-title h2 {
      font-size: 35px;
      font-weight: 700;
      color: #2b2b2b;
      letter-spacing: 2px;
      
    }
    
    .notice-section-title p {
      font-size: 20px;
      color: #444;
      margin-top: 5px;
      
    }
    
    .notice-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .notice-card {
      background: #fff;
      border-radius: 20px;
      padding: 22px;
      transition: .4s;
      cursor: pointer;
      box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    }
    
    .notice-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, .18);
    }
    
    .notice-card h3 {
      font-size: 28px;
      color: #ff5f8e;
      margin-bottom: 10px;
    }
    
    .notice-card p {
      font-size: 22px;
      color: #333;
      line-height: 1.6;
    }
    
    .notice-card span {
      display: block;
      margin-top: 18px;
      font-size: 19px;
      color: #777;
    }
    
    @media(min-width:768px) {
      .notice-section {
        padding: 70px 30px;
      }
    
      .notice-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
      }
    
      .notice-section-title h2 {
        font-size: 50px;
        
      }
    
      .notice-section-title p {
        font-size: 24px;
        
      }
    
      .notice-card {
        padding: 28px;
      }
    
      .notice-card h3 {
        font-size: 30px;
      }
    
      .notice-card p {
        font-size: 22px;
      }
    
    }
    
    
    @media(min-width:992px) {
      .notice-section {
        padding: 80px 60px;
      }
    
      .notice-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }
    
      .notice-section-title {
        margin-bottom: 50px;
        
      }
    
      .notice-section-title h2 {
        font-size: 60px;
        
      }
    
      .notice-section-title p {
        font-size: 26px;
        
      }
    
      .notice-card {
        padding: 30px;
        border-radius: 22px;
      }
    
      .notice-card h3 {
        font-size: 32px;
      }
    
      .notice-card p {
        font-size: 24px;
      }
    
      .notice-card span {
        font-size: 21px;
      }
    
    }