@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');

.bytp-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 20px;
    background: #5f7f7d;
    font-family: 'Montserrat', sans-serif;
}

.bytp-card {
    background: #f3f1ed;
    border-radius: 20px;
    padding: 30px;
    width: 320px;
    text-align: center;
    transition: all 0.3s ease;
}

.bytp-card:hover {
    transform: translateY(-5px);
}

.bytp-card h3 {
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.bytp-line {
    width: 60%;
    height: 2px;
    background: #5A8183;
    margin: 0 auto 20px;
}

.bytp-circle {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 15px;
}

.bytp-circle svg {
    transform: rotate(-90deg);
}

.bytp-circle circle {
    fill: none;
    stroke-width: 8;
}

.bytp-circle .bg {
    stroke: #d6d6d6;
}

.bytp-circle .progress {
    stroke:#5A8183;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s ease;
}

.bytp-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: 500;
}

.bytp-card p {
    font-size: 16px;
    margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .bytp-container {
        flex-direction: column;
        align-items: center;
    }
}