
  

  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin-top: 120px;
}

.image-section {
    flex: 2 1 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.content-section {
    flex: 2 1 500px;
    
}

.content-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.content-section p {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: justify;
    padding: 5px;
    padding-left: auto;
    padding-right: 10px;
}
.reasons-section {
    text-align: center;
    padding: 40px 20px;
  }
  
  .reasons-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
  }
  
  .reasons-section h1 span {
    color: #ff4c4c;
  }
  
  /* Row */
  

  .work-container {
    width: 80%;
    margin: 0 auto;
    background: white;
    /* padding: 30px; */
    margin-left: 10%;
    margin-top: 40px;
  }

  h1 {
    font-size: 1.7rem;
    margin-bottom: 10px;
    color: #111;
  }

  .rule {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
  }

  .icon {
    font-size: 1.3rem;
    color: #c62828;
    margin-right: 12px;
    line-height: 0.9;
    flex-shrink: 0;
  }

  

  .highlight {
    font-weight: bold;
  }

  h2 {
    font-size: 1.9rem;
    margin-bottom: 10px;
    text-align: left;
    /* margin-left: 60px; */
    padding-top: 15px;
  }

  .table-wrapper {
    overflow-x: auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  }

  table {
    width: 90%;
    border-collapse: collapse;
    margin-left: 5%;
  }

  th, td {
    text-align: center;
    padding: 20px;
    border: 1px solid #ccc;
  }

  th {
    background-color: #fef5f5;
    color: #9c1c1c;
    font-weight: 700;
  }

  tr:nth-child(even) {
    background-color: #fafafa;
  }

 



@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .content-section h1 {
        font-size: 1.5rem;
    }

    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
      }
    
      .reasons-section h1 {
        font-size: 3.5rem;
      }

      .container {
        padding: 20px;
      }

      h1 {
        font-size: 1.5rem;
      }

      .text {
        font-size: 14px;
      }

      .icon {
        font-size: 1rem;
      }

      th, td {
        padding: 12px 8px;
        font-size: 0.95rem;
      }

      h2 {
        font-size: 1.4rem;
      }
}


