* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f4f4f4;
    padding-top: 80px;
}

.container {
    width: 80%;
    margin: 50px auto;
    border: 2px solid #0099ff;
    padding: 20px;
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.iconSet {
    text-align: center;
    margin-bottom: 20px;
}

.icon {
    width: 120px;
}

.title {
    background: #0099ff;
    color: white;
    padding: 15px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
    inset-block: inherit;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.big_box_1, .big_box_2 {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.para {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .container {
        width: 90%;
        padding: 15px;
    }
    .img_membership {
        font-size: 18px;
    }
    h4 {
        font-size: 16px;
    }
    p {
        font-size: 13px;
    }
}
