
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.content-box {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    width: calc(25% - 20px);
    box-sizing: border-box;
}
._pypl-logo-wrapper_dp4vo_1219 {
    width: auto;

    display: none !important;
    position: relative;
    top: 3px;
}
.content-box img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.buttons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 10px;
}
.buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background-color: #007BFF;
    color: white;
}
@media (max-width: 768px) {
    .content-box {
        width: calc(50% - 20px);
    }
}
@media (max-width: 480px) {
    .content-box {
        width: 100%;
    }
}
