    #scp-app {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.scp-step { display: none; }
.scp-step.active { display: block; }

.scp-progress {
    height: 6px;
    background: #eee;
    margin-bottom: 20px;
}

.scp-bar {
    height: 100%;
    width: 25%;
    background: #2D60EB;
}

button,
.cta-btn {
    margin-top: 15px;
    margin-right: 12px;
    padding: 12px 20px;
    background: #2D60EB;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

button:hover,
.cta-btn:hover {
    opacity: 0.9;
}

.scp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.scp-results {
    background: #f8faff;
    border: 1px solid #dbe4ff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.scp-results p {
    margin-bottom: 12px;
    font-size: 16px;
   
}