/* Main section styles */
.check-score-section {
    /* Use check-bg.png as background, width full screen */
    background-image: url('../image/check-bg.png');
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 60px 20px;
    background-color: #f8fafc;
}
/* Content wrapper */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    margin-top: 40px;
}

/* Left image section */
.left-section {
    min-width: 300px;
}
.left-section:hover {
    box-shadow: 0 0 15px #60A5FA;
}

.image-container {
    background-color: white;
    border: none;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.image-container img {
    /* Use check.png as left image */
    width: 250px;
    height: auto;
    margin-bottom: 20px;
}

.image-container p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Right steps section */
.right-section {
    min-width: 300px;
}
.right-section:hover{
    box-shadow: 0 0 15px #60A5FA;
}


/* Responsive design for grid */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
}

.steps-container {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

/* Step number styling */
.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #3B83F6;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 14px;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Responsive design */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 24px;
    }

    .check-score-section {
        padding: 40px 20px;
    }
}