.paid-quiz-block {
    width: 100%;
    max-width: 1285px;
    background-color: #131a1e;
    padding: 40px;
    border-radius: 10px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.paid-quiz-content {
    display: flex;
    width: 100%;
    max-width: 1200px;
    align-items: center;
    justify-content: space-between;
}

.paid-quiz-image-container {
    position: relative;
    width: 50%;
    overflow: hidden;
    border-radius: 10px;
}

.paid-quiz-image-wrapper {
    position: relative;
    width: 100%;
    min-height: 200px;
    /* Ensures space for button */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
}

.paid-quiz-image-wrapper img {
    width: 100%;
    border-radius: 8px;
}

.paid-quiz-upload-button {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    z-index: 10;
    display: block;
}

.upload-button {
    color: black;
    background: white;
    border: 1px solid #ccc;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paid-quiz-text {
    width: 50%;
    padding-left: 40px;
}

.paid-quiz-category {
    display: inline-block;
    background: #d6409f;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
}

.paid-quiz-text h2 {
    font-size: 36px;
    font-weight: bold;
    margin: 10px 0;
    text-transform: uppercase;
}

.paid-quiz-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.paid-quiz-button {
    display: inline-block;
    background: #ffcc00;
    color: black;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease;
}

.paid-quiz-button:hover {
    background: #e6b800;
}