.results-section {
    padding: 30px 20px 0 20px;
    background-color: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.results-container {
    max-width: 1200px;
    margin: 0 auto;
}

.results-title {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-top: 0;
    margin-bottom: 0;
}

.results-subtitle {
    font-size: 14px;
    color: #666;
    margin-top: 0;
    margin-bottom: 20px;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chart-wrapper {
    position: relative;
    width: 98px;
    height: 98px;
    margin-bottom: 20px;
}

.chart-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 2;
}

.ring-progress {
    fill: none;
    stroke: #73a0c5;
    stroke-width: 2;
    stroke-linecap: round;
}

.chart-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 600;
    color: #73a0c5;
}

.stat-desc {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    max-width: 220px;
}

.add-btn-copy {
    background-color: #e93992;
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    height: 50px;
    width: 100%;
    max-width: 400px;
    border-radius: 4px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    margin-bottom: 15px;
}

.add-btn-copy:hover {
    background-color: #d0287d;
}

@media (max-width: 768px) {
    .results-section {
        padding: 16px 16px 0;
    }

    .results-title {
        font-size: 28px;
    }

    .stats-grid {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        margin-bottom: 30px;
    }
}