﻿
/* Main Container */
.wrapper {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    font-family: poppins;
}

/* Top Section */
.top-section {
    background: linear-gradient(90deg,#00134d,#001f75,#00134d);
    border-radius: 12px;
    padding: 25px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Left Content */
.left-content {
    width: 30%;
}

    .left-content h2 {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

.red-line {
    width: 60px;
    height: 4px;
    background: #ff0000;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
}

    .feature-list li {
        margin-bottom: 15px;
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .feature-list i {
        color: #fff;
    }

/* Center Image */
.center-image {
    width: 30%;
    text-align: center;
}

    .center-image img {
        width: 100%;
        max-width: 300px;
    }

/* Comparison Section */
.compare-section {
    width: 40%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.vs {
    font-size: 42px;
    font-weight: bold;
    color: #fff;
}


.check {
    color: green;
    font-weight: bold;
}

.cross {
    color: red;
    font-weight: bold;
}

/* Bottom Section */
.bottom-section {
    background: #fff;
    margin-top: 25px;
    border-radius: 12px;
    padding: 35px;
}

.bottom-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.help-content h2 {
    color: #08164a;
    font-size: 38px;
    margin-bottom: 10px;
}

.help-content p {
    color: #555;
    font-size: 18px;
}

.button-group {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.btn-red {
    background: #ff0000;
    color: #fff;
}

.btn-outline {
    border: 2px solid #ff0000;
    color: #ff0000;
    background: #fff;
}

/* Features */
.features2 {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.feature-box2 {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    border-right: 1px solid #ddd;
}

    .feature-box2:last-child {
        border-right: none;
    }

    .feature-box2 i {
        font-size: 40px;
        color: #08164a;
    }

    .feature-box2 h4 {
        color: #08164a;
        margin-bottom: 8px;
    }

    .feature-box2 p {
        color: #666;
        line-height: 1.5;
    }

/* Responsive */
@media(max-width:992px) {

    .top-section {
        flex-direction: column;
    }

    .left-content,
    .center-image,
    .compare-section {
        width: 100%;
    }

    .compare-section {
        flex-direction: column;
    }

    .features2 {
        grid-template-columns: repeat(2,1fr);
    }

    .feature-box2 {
        border: none;
    }
}

@media(max-width:768px) {

    .help-content h2 {
        font-size: 28px;
    }

    .features2 {
        grid-template-columns: 1fr;
    }

    .button-group {
        width: 100%;
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }
}

.text-black {
    color:#08164a;
}