.banner {
    padding: 60px 0;
    background: #312d89;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .heading {
    color: #fff;
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.banner .heading span {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
    color: #00c2fa;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.breadcrumb li {
    color: var(--white);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
}

.breadcrumb li::before {
    color: var(--white);
    content: "/";
    position: absolute;
    left: -10px;
}

.breadcrumb li:nth-child(1):before {
    display: none;
}

.breadcrumb li a {
    color: var(--white);
    text-decoration: none;
}

.buy-sec {
    padding: 60px 0;
}

.buy-sec .heading {
    text-align: center;
    margin-bottom: 30px;
}

.buy-sec .points {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.buy-sec .points li {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 20px;
    border: 2px solid #e9e7ff;
    background: linear-gradient(90deg, #f3fff7 0%, #fffbf4 50%, #fff6ff 100%);
    color: #312d89;
    font-size: 18px;
    font-weight: 500;
    transition: ease 0.3s;
}

.buy-sec .points li:hover {
    box-shadow: 0 1px 10px #e9e7ff;
}

.buy-sec .license-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.buy-sec .license-items .license {
    padding: 30px;
    border-radius: 20px;
    background: linear-gradient(0deg, #fff, #f8e7e5);
    box-shadow: inset 0 0 25px 5px #312d8900;
    border: 1px solid #312d8912;
    width: calc(33.33% - 20px);
    position: relative;
}

.buy-sec .license-items .license:nth-child(2) {
    background: linear-gradient(0deg, #fff, #dde5fe);
}

.buy-sec .license-items .license:nth-child(3) {
    background: linear-gradient(0deg, #fff, #e0f4fb);
}

.buy-sec .license-items .license .name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.buy-sec .license-items .license .use {
    color: #595959;
    font-size: 17px;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 0;
}

.buy-sec .license-items .license .price {
    font-size: 17px;
    font-weight: 500;
    margin-top: 20px;
}

.buy-sec .license-items .license .price span {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: #312d89;
}

.buy-sec .license-items .license .machine,
.buy-sec .license-items .license .support {
    font-size: 17px;
    color: #474747;
    padding-left: 20px;
    margin-bottom: 10px;
    position: relative;
}

.buy-sec .license-items .license .machine::after,
.buy-sec .license-items .license .support::after {
    content: ">>";
    position: absolute;
    font-size: 18px;
    font-weight: 700;
    font-family: monospace;
    left: 0;
    letter-spacing: -5px;
}

.buy-sec .license-items .license .btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.buy-sec .license-items .license .btn-group .custom-btn {
    display: flex;
    min-width: 100%;
    min-height: 50px;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    border-radius: 10px;
    background: #ffffff;
    outline: none;
    border: 1px solid #312d891f;
    box-shadow: inset 0 0 15px 2px #0b00ff0f;
    color: #312d89;
    font-size: 20px;
    font-style: italic;
    font-weight: 800;
    line-height: normal;
    text-decoration: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: ease 0.5s;
    -moz-transition: ease 0.5s;
    -ms-transition: ease 0.5s;
    -o-transition: ease 0.5s;
    transition: ease 0.5s;
}

.buy-sec .license-items .license .btn-group .custom-btn span {
    color: #197aac;
}

.buy-sec .license-items .license .btn-group .custom-btn:hover,
.buy-sec .license-items .license .btn-group .custom-btn:hover span {
    color: #fff;
}

.buy-sec .license-items .license .btn-group .custom-btn::after {
    background: #312d89;
}


.buy-sec .table {
    margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
}

.buy-sec .table thead tr th {
  background-color: #312D89;
  color: #FFF;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 20px 30px;
  text-align: center;
}

.buy-sec .table tbody tr th {
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 20px 30px;
}

.buy-sec .table tbody tr td {
  text-align: center;
  padding: 20px 30px;
}

@media (max-width: 991px) {
    .buy-sec .license-items .license{
        width: calc(50% - 30px);
    }
}
@media (max-width: 767px) {
    .buy-sec .license-items .license{
        width: 100%;
    }
    .table-responsive::-webkit-scrollbar{
        height: 2px;
    }
    .breadcrumb ul{
        justify-content: center;
    }
}