.rdq-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}
.rdq-box {
    background: #eafaf4;
    padding: 20px;
    border-radius: 12px;
    width: 260px;
    text-align: center;
}
.title-text {
    font-size: 16px;
    margin-bottom: 5px;
}
.subtitle-text {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}
.circle-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 15px auto;
}
.circle-wrapper svg {
    transform: rotate(-90deg);
}
.circle-wrapper svg circle:nth-child(1) {
    fill: none;
    stroke: #ddd;
    stroke-width: 10;
}
.circle-wrapper svg circle:nth-child(2) {
    fill: none;
    stroke: #00a896;
    stroke-width: 10;
    stroke-dasharray: 345;
    stroke-dashoffset: 345;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.5s linear;
}
.circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: 18px;
}
.time-blocks {
    display: flex;
    justify-content: space-between;
}
.time-blocks .block {
    background: #00a896;
    color: white;
    padding: 10px;
    border-radius: 8px;
    width: 50px;
    font-size: 14px;
}
