.arrow-circle-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 1;
}

.arrow-circle-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-path {
    transition: all 0.3s ease;
}

.arrow-path {
    transition: stroke 0.3s ease;
}

.circle-texts {
    transform: rotate(90deg);
    transform-origin: center;
}

.circle-text {
    font-weight: bold;
    font-size: 24px;
    fill: currentColor;
}

.circle-description {
    font-size: 14px;
    fill: currentColor;
    max-width: 200px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .circle-text {
        font-size: 20px;
    }

    .circle-description {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .circle-text {
        font-size: 16px;
    }

    .circle-description {
        font-size: 10px;
    }
} 