       .hero {
         background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
         padding: 80px 0;
         text-align: center;
         border-bottom: 4px solid #1fc602;
       }

       .hero-title {
         font-size: 2.2rem;
         color: #1a1a1a;
         margin-bottom: 20px;
         line-height: 1.3;
       }

       .images--wrapper {
         display: flex;
         justify-content: center;
         align-items: center;
         margin-top: 50px;
       }

       .images--wrapper img {
         max-width: 600px;
         width: 100%;
         /* height: 300px; */
         margin: 0 20px;
         border-radius: 10px;
       }

       .author {
         font-size: 1.1rem;
         color: #555;
         font-style: italic;
         margin-top: 20px;
       }

       /* Content Section */
       .content-section {
         padding: 60px 0;
       }

       .rules-section {
         max-width: 900px;
         margin: 0 auto 40px;
         background: white;
         padding: 30px;
         border-radius: 12px;
         box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
       }

       .rules-section h2 {
         color: #1fc602;
         margin-bottom: 30px;
         font-size: 1.5rem;
         text-align: center;
       }

       .rule-item {
         background: white;
         padding: 25px;
         border-radius: 12px;
         box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
         margin: 20px 0;
         position: relative;
         padding-left: 60px;
         counter-increment: rule-counter;
       }

       .rule-item::before {
         content: counter(rule-counter);
         position: absolute;
         top: 25px;
         left: 25px;
         width: 20px;
         height: 20px;
         background-color: #1fc602;
         color: white;
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         font-weight: bold;
         font-size: .7rem;
       }

       .no-help-section {
         max-width: 900px;
         margin: 0 auto 40px;
         background: white;
         padding: 30px;
         border-radius: 12px;
         box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
       }

       .no-help-section h2 {
         color: #f44336;
         margin-bottom: 30px;
         font-size: 1.5rem;
         text-align: center;
       }

       .no-help-list {
         list-style: none;
         margin-top: 20px;
       }

       .no-help-item {
         padding: 15px 0;
         padding-left: 30px;
         position: relative;
         border-bottom: 1px solid #e0e0e0;
       }

       .no-help-item::before {
         content: '❌';
         position: absolute;
         left: 0;
         top: 13px;
         font-size: 1.2rem;
       }

       .recommendation {
         background-color: #e8f5e8;
         border-left: 4px solid #1fc602;
         padding: 20px;
         border-radius: 0 8px 8px 0;
         margin: 20px 0;
       }

       .disclaimer {
         background-color: #fff3cd;
         border-left: 4px solid #ffc107;
         padding: 20px;
         border-radius: 0 8px 8px 0;
         margin: 30px 0;
         font-size: 0.9rem;
       }

       @media screen and (max-width: 768px) {
         .hero-title {
           font-size: 1.5rem;
         }
         .rule-item{
          padding-left: 20px;
         }
         .rule-item::before{
           /* top: 0; */
           left: -20px;
 
         }

         .no-help-list{
          margin: 0;
          padding: 0;
         }
       }