 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f7f7f9;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px 20px;
            background: #fff;
        }

        .container-listing{
            max-width: 1200px;
            background:transparent;
            margin: auto;
        }
    
        .hero {
            background-color: #fff;
            padding: 25px 0;
            text-align: center;
        }



       .hero {
            background:
                linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
                url('/images/hero-image-intelligentx-ai.png');
            background-size: cover;
            background-position: center;
            min-height: 25vh;

            display: flex;
            justify-content: center;
            align-items: center;

            text-align: center;
            color: #fff;
        }

        .hero h1 {
            font-family: 'Poppins', 'Montserrat', sans-serif; 
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            margin: 0;
        }


        .hero-text {
            max-width: 900px;
            margin: 0 auto;
            font-size: 16px;
            line-height: 1.8;
            color: #333;
            text-align: left;
        }

        .hero-text strong {
            font-weight: 700;
        }

        .hero-text p {
            margin-bottom: 20px;
        }

        .bonuses-section {
            /*background-color: #fff;*/
            padding: 30px 0;
            margin-top: 10px;
        }

        .bonuses-section h2 {
            font-size: 1.5em;
            color: #0066cc;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 700;
        }

        .intro-text {
            max-width: 900px;
            margin: 0 auto 40px;
            font-size: 16px;
            line-height: 1.8;
            color: #333;
        }

        .intro-text strong {
            font-weight: 700;
        }

        .table-container {
                width: 100%;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                margin-bottom: 15px;
            }

            table {
                width: 100%;
                min-width: 800px; 
                border-collapse: collapse;
            }

            th, td {
                padding: 14px 16px;
                border: 1px solid #1e66ff;
                text-align: left;

                white-space: nowrap;    
                vertical-align: middle;
            }

        @media (max-width: 768px) {
          .table-container {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
          }

          .bonus-table {
            min-width: 600px; 
        }
    }

        .bonus-table {
            width: 100%;
            border-collapse: collapse;
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-top: 30px;
        }

        .bonus-table thead {
            background-color: #f8f9fa;
        }

        .bonus-table th {
            padding: 15px;
            text-align: left;
            font-weight: 700;
            color: #333;
            border-bottom: 2px solid #e0e0e0;
            font-size: 15px;
        }

        .bonus-table td {
            padding: 20px 15px;
            border-bottom: 1px solid #e0e0e0;
            font-size: 14px;
        }

        .bonus-table tbody tr:hover {
            background-color: #f8f9fa;
        }

        .claim-btn {
            background-color: #0066cc;
            color: #fff;
            padding: 10px 30px;
            border: none;
            border-radius: 5px;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.3s;
            font-size: 14px;
        }

        .claim-btn:hover {
            background-color: #004499;
        }

        /* Content Section */
        .content-section {
            /*background-color: #fff;*/
            /*padding: 60px 0;*/
            /*margin-top: 20px;*/
        }

        .content-section h2 {
            font-size: 1.5em;
            color: #0066cc;
            margin-bottom: 25px;
            font-weight: 700;
        }
        .bonuses-section h2 {
            font-size: 1.5em;
            color: #0066cc;
            margin-bottom: 25px;
            font-weight: 700;
            text-align: left;
        }

        .content-section h3 {
            font-size: 1.17em;
            color: #333;
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .content-section p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #333;
        }

        .content-section ul,
        .content-section ol {
            margin-left: 30px;
            margin-bottom: 20px;
        }

        .content-section li {
            margin-bottom: 10px;
            line-height: 1.8;
        }

        .content-section strong {
            font-weight: 700;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .comparison-table th,
        .comparison-table td {
            padding: 12px 15px;
            border: 1px solid #e0e0e0;
            text-align: left;
        }
        thead {
    background-color: #eaf4ff;
}


        .comparison-table thead {
            background-color: #f8f9fa;
        }

        .comparison-table th {
            font-weight: 700;
            color: #333;
        }

        .highlight-box {
            background-color: #f0f7ff;
            border-left: 4px solid #0066cc;
            padding: 20px;
            margin: 30px 0;
        }

        .highlight-box strong {
            color: #0066cc;
        }

         footer {
        background: #333;
        padding: 15px 50px;
    }


    
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .copyright {
        color: rgba(255, 255, 255, 0.6);
        font-size: 14px;
        letter-spacing: 0.5px;
    }
    
    .copyright span {
        color: #fff;
        font-weight: 600;
    }
    
    .socials {
        display: flex;
        gap: 20px;
        align-items: center;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .social-link:hover {
        transform: translateY(-3px);
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
        fill: rgba(255, 255, 255, 0.7);
        transition: fill 0.3s ease;
    }
    
    .social-link:hover svg {
        fill: #ffffff;
    }
    
    @media (max-width: 600px) {
        footer {
            padding: 25px 20px;
        }
        
        .footer-container {
            flex-direction: column-reverse;
            gap: 20px;
        }
        
        .copyright {
            text-align: center;
        }
    }


        table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    background-color: #ffffff;
}

/*table tbody tr:first-child {
    background-color: #f8f9fa;
}

table tbody tr:first-child td {
    font-weight: bold;
    color: #333333;
    border-bottom: 2px solid #1e73be;
}*/

table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #1e73be;
    color: #333333;
}

/*table tbody tr:first-child td:first-child {
    border-left: 2px solid #1e73be;
}

table tbody tr:first-child td:last-child {
    border-right: 2px solid #1e73be;
}

table tbody tr:last-child td {
    border-bottom: 2px solid #1e73be;
}

table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 4px;
}

table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 4px;
}

table tbody tr:hover {
    background-color: #f0f8ff;
}*/

table td strong {
    font-weight: 600;
    color: #1e1e1e;
}

ul {
    margin: 15px 0;
    padding-left: 25px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

ul li {
    margin-bottom: 10px;
    color: #333333;
    list-style-type: disc;
    padding-left: 5px;
}

ul li::marker {
    color: #1e73be;
    font-size: 1.2em;
}

ul li strong {
    font-weight: 600;
    color: #1e1e1e;
}

/* Ordered List (OL) Styling */

ol {
    margin: 15px 0;
    padding-left: 25px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

ol li {
    margin-bottom: 10px;
    color: #333333;
    padding-left: 5px;
}

ol li::marker {
    color: #1e73be;
    font-weight: bold;
    font-size: 16px;
}

ol li strong {
    font-weight: 600;
    color: #1e1e1e;
}
.tip{
    padding: 12px 15px;
    background-color: #1e73be;
    color: white;
    border-radius: 8px;
}


        /* Responsive */
        @media (max-width: 768px) {    

            .hero h1 {
                font-size: 2em;
            }

            .bonuses-section h2 {
                font-size: 1.5em;
            }

            .bonus-table {
                font-size: 12px;
            }

            .bonus-table th,
            .bonus-table td {
                padding: 10px 8px;
            }

            .claim-btn {
                padding: 8px 20px;
                font-size: 12px;
            }
        }






.card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      border: 1px solid #e5e7eb;
      display: flex;
      flex-direction: column;
      width: 215px;
    }
    
    .card-img {
      height: 110px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
      font-size: 24px;
      text-align: center;
      padding: 10px;
      overflow: hidden;
      background-color: #edf2f7;

    }

    .card a{
        width: 100%;
    }
    
    .card-img img {
      width: 80%;
      height: 100%;
      object-fit: cover;
      border-radius: 5px;
    }
    
    
    
    .card-body {
      padding: 5px 20px 0 20px;
      text-align: center;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      background-color: #edf2f7;

    }
    
    .card-title {
      font-size: 18px;
      font-weight: 600;
      color: #1f2937;
      margin-bottom: 5px;
    }
    
    .card-note {
      font-size: 13px;
      color: #9ca3af;
      margin-bottom: 20px;
    }
    
    .btn {
      background: #0066cc;
      color: white;
      border: none;
      padding: 14px 30px;
      border-radius: 0 0 16px 16px;
      font-size: 20px;
      font-weight: 600;
      cursor: pointer;
      width: calc(100% + 40px);
      margin-left: -20px;
      margin-right: -20px;
      transition: background 0.2s;
      margin-top: auto;
    }
    
    .btn:hover {
      background: #0284c7;
    }       


    .grid-listing{
            gap: 16px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center; 
            margin-bottom: 20px;
            margin-top: 20px;
    }



  
    @media (max-width: 1024px){
      .grid-listing{
           gap: 16px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
    }

  
    @media (max-width: 768px){
     .grid-listing {
          display: flex;
          flex-wrap: wrap;
          gap: 16px;
        }

        .card {
          width: 220px; 
        }
        .card-img img{
            object-fit: fill;
        }

    }
