 <style>
    /* Table Styles */
    .compare-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
      background-color: #ffffff; /* White background */
    }

    .compare-table thead {
    /* background-color: #4e4fed; Main theme color */
      color: #fff; /* White text */
      font-weight: bold;
    }

    .compare-table thead th {
       padding: 15px;
      /*  text-transform: uppercase; /* Makes headings look more formal */
       font-size: 16px;
    }

    .compare-table tbody tr {
       border-bottom: 1px solid #ddd;
       transition: background-color 0.3s ease-in-out;
    }

    .compare-table tbody tr:hover {
       background-color: #f5f5f5; /* Light background on hover */
    }

    .compare-table td {
       padding: 15px;
       text-align: center;
       font-size: 14px;
    }

    .compare-table .customize-btn {
       border-radius: 20px;
       padding: 8px 20px;
       background-color: #007bff; /* Blue button color */
       color: white;
       border: none;
       cursor: pointer;
       transition: background-color 0.3s, transform 0.2s; /* Button hover animations */
    }

    .compare-table .customize-btn:hover {
       background-color: #0056b3; /* Darker blue on hover */
       transform: scale(1.05); /* Slight zoom on hover */
    }

    /* Locations Button Styles */
    .locations {
       display: flex;
       justify-content: space-between;
       margin-bottom: 20px;
    }

    .locations button {
       background-color: #f0f0f0;
       border: 1px solid #ccc;
       padding: 12px 25px;
       cursor: pointer;
       border-radius: 10px;
       transition: background-color 0.3s ease, transform 0.3s ease;
       font-size: 16px;
    }

    .locations button:hover {
       background-color: #4e4fed;
       color: white;
       transform: translateY(-3px); /* Slight lift effect */
    }

    /* Location Table Styles */
      .location-table {
       display: none;
       background-color: #fff;
       padding: 0;
       border-radius: 20px;
       box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Stronger shadow for location tables */
       border-left: 4px solid #c9cef5;
       border-bottom: 4px solid #c9cef5;
        -webkit-overflow-scrolling: touch;
       overflow-x: auto;
        width: 100%;
    }

    .location-table.active {
      display: block;
    }

    .location-table table {
       width: 100%;
       border-collapse: collapse;
    }

    .location-table th, .location-table td {
       padding: 15px;
       border: 1px solid #ddd;
       text-align: center;
    }

    .location-table th {
       background-color: #4e4fed;
       color: white;
       font-weight: bold;
    }

    /* Button Styles */
      .customize-btn {
       background-color: #4e4fed;
       color: #fff;
       padding: 10px 20px;
       border-radius: 20px;
       border: none;
       font-size: 16px;
       cursor: pointer;
       transition: background-color 0.3s, box-shadow 0.3s;
    }

    .customize-btn:hover {
       background-color: #3838d2; /* Slightly darker on hover */
       box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); /* Button shadow effect */
    }

    /* Table Row Hover Effect */
      #hello:hover {
       background-color: #4e4fed;
       color: #fff;
       transition: 0.3s ease;
    }

      #hello {
       border-bottom: 1px solid #c0c0c0;
    }

    /* Responsive Styles */
      @media (max-width: 1024px) {
      .compare-table th, .compare-table td {
       padding: 10px 12px;
       font-size: 14px;
    }

     .customize-btn {
      padding: 8px 16px;
      font-size: 14px;
    }
  }

  @media (max-width: 768px) {
     .compare-table th, .compare-table td {
      padding: 8px 10px;
      font-size: 12px;
    }
  
     .customize-btn {
       padding: 6px 12px;
       font-size: 12px;
    }
  }

  @media (max-width: 480px) {
    .compare-table th, .compare-table td {
      padding: 6px 8px;
      font-size: 10px;
    }

    .compare-table {
      min-width: 600px;
    }

    .customize-btn {
      padding: 5px 10px;
      font-size: 10px;
    }
  }

    /* Table Heading Color */
    .table-heading {
      color: #4e4fed;
      font-size: 18px;
      font-weight: bold;
      text-align: left;
    }

  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: #f4f4f4;
        }

        .container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 75vh; /* Height ko thoda kam kiya */
            padding: 20px;
        }

        .content-text {
            display: flex;
            width: 100%;
            max-width: 1600px;
            height: 100%;
            background: white;
            box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
            border-radius: 10px;
            overflow: hidden;
        }

        .image-section, .text-section {
            width: 50%;
        }

        .image-section img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .text-section {
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(to right, #ffffff, #f9f9f9);
        }

        .text-section h2 {
            font-size: 36px;
            font-weight: bold;
            color: #222;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .text-section p {
            font-size: 18px;
            color: #444;
            line-height: 1.8;
            font-weight: 300;
        }

        .text-section button {
            margin-top: 20px;
            padding: 12px 26px;
            font-size: 18px;
            color: white;
            background: linear-gradient(to right, #007BFF, #0056b3);
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.4s;
            font-weight: bold;
            letter-spacing: 1px;
        }

        .text-section button:hover {
            background: linear-gradient(to right, #0056b3, #003f80);
            transform: scale(1.05);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .content-text {
                flex-direction: column;
                height: auto;
            }
            .image-section, .text-section {
                width: 100%;
                height: 50vh;
            }
            .text-section {
                padding: 40px;
            }
            .text-section h2 {
                font-size: 28px;
            }
            .text-section p {
                font-size: 16px;
            }
        }

        @media (max-width: 768px) {
            .text-section {
                padding: 30px;
            }
            .text-section h2 {
                font-size: 24px;
            }
            .text-section p {
                font-size: 14px;
            }
            .text-section button {
                font-size: 16px;
                padding: 10px 20px;
            }
        }
</style>