* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body,html {
    width: 100%;
    height: 100%;
}

body {
    background: #f8f8f8;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
}

.main-container {
    max-width: 801px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.banner-one {
    background: #E74C3C;
    margin: 0px 0px 20px;
    padding: 14px;
    border-radius: 5px;
}

.banner-one h2 {
    color: #ffffff;
    font-size: 16px;
    text-align: center;
}

.main-heading {
    color: #2C3E50;
    font-size: 28px;
    margin: 0px 0px 20px;
    text-align: center;
}

.main-para {
    font-size: 18px;
    color: #555555;
    margin: 0px 0px 30px;
    text-align: center;
}

.list-box {
    width: 100%;
    background-color: #2c3e50;
    color: white;
    padding: 30px 25px 25px 25px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.list-box h2 {
    color: #ffffff;
    font-size: 20px;
    margin: 0px 0px 25px;
    text-align: center;
}

.list-box ul {
    list-style-type: none;
}

.list-box ul li {
    margin-bottom: 15px;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    font-size: 16px;
    color: #ffffff;
}

.list-box ul li span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 15px;
    background: #E74C3C;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.banner-two {
    width: 100%;
    text-align: center;
    background: #f9f9f9;
    padding: 18px;
    border-radius: 5px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.banner-two h2 {
    color: #555555;
    font-size: 16px;
    font-weight: 400;
}

.banner-two h2 span {
    color: #E74C3C;
    font-weight: bold;
}

.check-btn {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.check-btn a {
    text-decoration: none;
    width: fit-content;
}

.check-btn a button {
    min-width: 400px;
    width: 100%;
    height: 62px;
    padding: 15px 20px;
    background: #e74c3c;
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.check-btn a button:hover {
    background-color: #c0392b;
}

.icons-row {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.icons-row a {
    text-decoration: none;
}

.icons-row a img {
    width: 40px;
    margin: 0 10px;
    opacity: 0.6;
}

.main-container .bottom-txt {
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

    .check-image {
    display: none;
}

@media(max-width:991px) {
    .check-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 30px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
}

@media(max-width:450px) {
    .check-btn a button {
        min-width: 100px;
        width: 100%;
    }
    .check-btn a {
        width: 90%;
    }
}

@media(max-width:768px) {
    .main-heading {
    font-size: 24px;
    line-height: 37px;
}
   .main-container {
    padding: 15px;
   }
   .banner-one {
    padding: 10px;
}

.banner-one h2 {
    font-size: 16px;
    line-height: 26px;
}
.main-para {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 25px;
}
.banner-two h2 {
    font-size: 16px;
    line-height: 26px;
}
.main-container .bottom-txt {
    line-height: 20px;
}
}