.progress-bar-90 { width: 90%; }
.progress-bar-95 { width: 95%; }
.progress-bar-85 { width: 85%; }
.progress-bar-75 { width: 75%; }
.progress-bar-80 { width: 80%; }
.progress-bar-88 { width: 88%; }
.result-text {
    font-size: 0.9rem;
    margin-top: 15px;
    opacity: 0.8;
}

.contract-container {
    background: white;
    color: black;
    padding: 20px;
    border-radius: 8px;
    text-align: right;
}

.download-btn {
    margin-top: 15px;
}

.success-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(40, 167, 70, 0.8);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 10000;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.success-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-content i {
    font-size: 1.2rem;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
}